diff options
author | Rob Landley <rob@landley.net> | 2007-01-04 17:26:30 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-01-04 17:26:30 -0500 |
commit | 17afeba9600b264b4f3431d9e772667047bc4e45 (patch) | |
tree | 472cff2b7e65b098f5aed1cf500007682797d677 /Makefile | |
parent | 46968f75bb7840747b54759eb0d7dd63aec365ad (diff) | |
download | toybox-17afeba9600b264b4f3431d9e772667047bc4e45.tar.gz |
Blah. The sed filter's not right, I'll try again later.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,8 +38,8 @@ bloatcheck: toybox_old toybox_unstripped toyfiles = main.c toys/*.c lib/*.c toybox_unstripped: gen_config.h $(toyfiles) toys/toylist.h lib/lib.h toys.h $(CC) $(CFLAGS) -I . $(toyfiles) -o toybox_unstripped \ - -ffunction-sections -fdata-sections -Wl,--gc-sections \ - 2>&1 | sed -n -e '/may be used uninitialized/{s/.*/\n/;h;b};1{x;b};: print;x;/\n/b thing;p;: thing;${x;p}' >&2 + -ffunction-sections -fdata-sections -Wl,--gc-sections #\ + #2>&1 | sed -n -e '/may be used uninitialized/{s/.*/\n/;h;b};1{x;b};: print;=;p;x;/\n/b thing;p;: thing;${x;p}' >&2 toybox: toybox_unstripped $(STRIP) toybox_unstripped -o toybox |