diff options
author | Rob Landley <rob@landley.net> | 2013-12-28 17:06:55 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-12-28 17:06:55 -0600 |
commit | 46c8069947768f1deb3352ee354550f69ab9fbd3 (patch) | |
tree | 83be3c01df0f21cb6ffe8ff665ad50f537f834d2 /scripts/make.sh | |
parent | f9d5b02e6645303b1eb04a96387924bfd2c0fe1c (diff) | |
download | toybox-46c8069947768f1deb3352ee354550f69ab9fbd3.tar.gz |
Cosmetic tweak.
Diffstat (limited to 'scripts/make.sh')
-rwxr-xr-x | scripts/make.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/make.sh b/scripts/make.sh index 493306c5..e4f0b35e 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -50,7 +50,7 @@ echo "Generate headers from toys/*/*.c..." # first element of the array). The rest must be sorted in alphabetical order # for fast binary search. -echo "generated/newtoys.h" +echo -n "generated/newtoys.h " echo "USE_TOYBOX(NEWTOY(toybox, NULL, TOYFLAG_STAYROOT))" > generated/newtoys.h sed -n -e 's/^USE_[A-Z0-9_]*(/&/p' toys/*/*.c \ @@ -64,7 +64,7 @@ then $HOSTCC scripts/mkflags.c -o generated/mkflags || exit 1 fi -echo generated/flags.h +echo -n "generated/flags.h " # Parse files through C preprocessor twice, once to get flags for current # .config and once to get flags for allyesconfig @@ -113,7 +113,7 @@ function getglobals() done } -echo "generated/globals.h" +echo -n "generated/globals.h " GLOBSTRUCT="$(getglobals)" ( |