diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -37,17 +37,17 @@ echo '#define Instroot "'$prefix'"' > config.h case $OS in *Linux*) echo '#define Asmcmd "as -g -o %s %s"' >> config.h - echo '#define Symprefix ""' >> config.h + echo '#define symprefix ""' >> config.h echo 'export SYS=linux' >> config.mk ;; *Darwin*) echo '#define Asmcmd "as -g -o %s %s"' >> config.h - echo '#define Symprefix "_"' >> config.h + echo '#define symprefix "_"' >> config.h echo 'export SYS=osx' >> config.mk ;; *FreeBSD*) echo '#define Asmcmd "as -g -o %s %s"' >> config.h - echo '#define Fprefix ""' >> config.h + echo '#define symprefix ""' >> config.h echo 'export SYS=freebsd' >> config.mk ;; *) |