From 207cadacd3cef42fa918981423c951f49443f032 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 3 Oct 2013 03:18:00 -0500 Subject: Switch flag generation from shell to C. This should actually generate FLAG_longopt 0 #defines for disabled bare longopts (ala ls without --color). Put temporary executables under "generated" (including instlist for install). --- scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/install.sh') diff --git a/scripts/install.sh b/scripts/install.sh index d9b56567..8891a314 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -35,8 +35,8 @@ done echo "Compile instlist..." -$DEBUG $HOSTCC -I . scripts/install.c -o instlist || exit 1 -COMMANDS="$(./instlist $LONG_PATH)" +$DEBUG $HOSTCC -I . scripts/install.c -o generated/instlist || exit 1 +COMMANDS="$(generated/instlist $LONG_PATH)" echo "Install commands..." -- cgit v1.2.3