diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-06-20 12:23:35 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-06-20 12:23:35 +0200 |
commit | ea9ebc011b3ee9b86b00646b91e73bb860d340b4 (patch) | |
tree | ef5c9e7e609c1e702cde8da2621887b4bcdd4718 | |
parent | df3ec0e2f70d67f1f880bee933985732b455ee76 (diff) | |
download | busybox-w32-ea9ebc011b3ee9b86b00646b91e73bb860d340b4.tar.gz busybox-w32-ea9ebc011b3ee9b86b00646b91e73bb860d340b4.tar.bz2 busybox-w32-ea9ebc011b3ee9b86b00646b91e73bb860d340b4.zip |
scripts/trylink: libbusybox fix
gcc 6.1.1 can emit empty line with spaces
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-x | scripts/trylink | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/trylink b/scripts/trylink index 129570a60..145df9959 100755 --- a/scripts/trylink +++ b/scripts/trylink | |||
@@ -293,7 +293,7 @@ if test "$CONFIG_FEATURE_INDIVIDUAL" = y; then | |||
293 | echo "Linking individual applets against libbusybox (see $sharedlib_dir/*)" | 293 | echo "Linking individual applets against libbusybox (see $sharedlib_dir/*)" |
294 | gcc -DNAME_MAIN -E -include include/autoconf.h include/applets.h \ | 294 | gcc -DNAME_MAIN -E -include include/autoconf.h include/applets.h \ |
295 | | grep -v "^#" \ | 295 | | grep -v "^#" \ |
296 | | grep -v "^$" \ | 296 | | grep -v "^ *$" \ |
297 | > applet_lst.tmp | 297 | > applet_lst.tmp |
298 | while read name main junk; do | 298 | while read name main junk; do |
299 | 299 | ||