diff options
author | Rob Landley <rob@landley.net> | 2007-02-13 16:41:51 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-02-13 16:41:51 -0500 |
commit | 2aa494dcfe701e080e62f3d2a36af84b2ee16837 (patch) | |
tree | 9f6a33a599833e6211f3891bb39fd7c784784ce5 /Makefile | |
parent | 4f5a671bf49bcce98be1a0be847cf4f5eaeacd2a (diff) | |
download | toybox-2aa494dcfe701e080e62f3d2a36af84b2ee16837.tar.gz |
MacOS X has a defective sed with no -r.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ bloatcheck: toybox_old toybox_unstripped # Get list of toys/*.c files from .config -toysfiles = $(shell sed -nre 's/^CONFIG_(.*)=y/\1/;t skip;b;:skip;s/_.*//;p' .config | sort -u | tr A-Z a-z | grep -v '^toybox$$' | sed -r 's@(.*)@toys/\1.c@') +toysfiles = $(shell sed -nre 's/^CONFIG_(.*)=y/\1/;t skip;b;:skip;s/_.*//;p' .config | sort -u | tr A-Z a-z | grep -v '^toybox$$' | sed 's@\(.*\)@toys/\1.c@') # Compile toybox from source |