diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-02-25 00:31:09 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-02-25 00:31:09 +0000 |
commit | 94d4033d0110b10f01a1ca2bf8c2899677df85d0 (patch) | |
tree | 24911930e538675a8c72d6ddca809007e74ffe85 /dumpsetups | |
parent | d26c41650f10ee1ce57578e4ffef0d54b0fdec7e (diff) |
swapped out 'echo -e' to be compatible with BSD's /bin/echo
svn path=/trunk/externals/miXed/; revision=10814
Diffstat (limited to 'dumpsetups')
-rwxr-xr-x | dumpsetups | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9,7 +9,8 @@ echo '// Do not edit this file, run "make" instead. * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ ' awk '/void .*_setup\(void\)$/&&!/'$LIB'/{print $0";"}' *.c -echo -e '\nvoid all'$LIB's_setup(void)' +echo "" +echo 'void all'$LIB's_setup(void)' echo '{' awk -F '[ (]' '/void .*_setup\(void\)$/&&!/'$LIB'/{print " "$2"();"}' *.c echo '}' |