From 2aa494dcfe701e080e62f3d2a36af84b2ee16837 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 13 Feb 2007 16:41:51 -0500 Subject: MacOS X has a defective sed with no -r. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3