diff options
author | Francois Perrad <fperrad@gmail.com> | 2018-10-10 17:56:35 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-10 21:21:02 +0200 |
commit | fd4d596f3d7640e37858725974a78b4f2f5da8cf (patch) | |
tree | 460cf1b04104da20dd045026aa050234ad3a9e57 | |
parent | 952a0d6ab37ebd15884762bc1a377bfe39d0d406 (diff) | |
download | buildroot-fd4d596f3d7640e37858725974a78b4f2f5da8cf.tar.gz buildroot-fd4d596f3d7640e37858725974a78b4f2f5da8cf.zip |
scancpan: generate a conventional comment
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rwxr-xr-x | utils/scancpan | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/scancpan b/utils/scancpan index 066882c08f..01f3abdc85 100755 --- a/utils/scancpan +++ b/utils/scancpan @@ -698,7 +698,7 @@ while (my ($distname, $dist) = each %dist) { say {$fh} qq{\tdepends on !BR2_STATIC_LIBS} if $need_dlopen{$distname}; foreach my $dep (sort @{$deps_runtime{$distname}}) { my $brdep = brname( fsname( $dep ) ); - say {$fh} qq{\tselect BR2_PACKAGE_${brdep}}; + say {$fh} qq{\tselect BR2_PACKAGE_${brdep} # runtime}; } say {$fh} qq{\thelp}; say {$fh} qq{\t ${abstract}\n} if $abstract; |