aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-02-13 16:41:51 -0500
committerRob Landley <rob@landley.net>2007-02-13 16:41:51 -0500
commit2aa494dcfe701e080e62f3d2a36af84b2ee16837 (patch)
tree9f6a33a599833e6211f3891bb39fd7c784784ce5 /Makefile
parent4f5a671bf49bcce98be1a0be847cf4f5eaeacd2a (diff)
downloadtoybox-2aa494dcfe701e080e62f3d2a36af84b2ee16837.tar.gz
MacOS X has a defective sed with no -r.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 97482ae1..2a33cf54 100644
--- a/Makefile
+++ b/Makefile
@@ -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