From d620f77f21638d2e9142ebd523a781e831757251 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 5 Jul 2016 19:36:00 -0500 Subject: Fix generated/make.sh. (Quotes in TOYBOX_VERSION need to wind up in resulting macro.) --- scripts/make.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/make.sh b/scripts/make.sh index 80d14849..07bf2ac8 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -82,11 +82,11 @@ genbuildsh() echo "#!/bin/sh" echo - echo "BUILD=\"$BUILD\"" + echo "BUILD='$BUILD'" echo - echo "FILES=\"$LIBFILES $TOYFILES\"" + echo "FILES='$LIBFILES $TOYFILES'" echo - echo "LINK=\"$LINK\"" + echo "LINK='$LINK'" echo echo echo '$BUILD $FILES $LINK' -- cgit v1.2.3