diff options
author | akoshibe <akoshibe@eigenstate.org> | 2014-08-11 19:34:35 -0700 |
---|---|---|
committer | akoshibe <akoshibe@eigenstate.org> | 2014-08-11 19:34:35 -0700 |
commit | fb85c50fc2abd8ba903f72b59567b9e7f2e31c1c (patch) | |
tree | 2a2e9ba6dc1a2bcbf3fdd5deeb7a700d9a859937 /configure | |
parent | 0aa3e7655cfa6746288e89358d2d7e539efa641d (diff) | |
download | mc-fb85c50fc2abd8ba903f72b59567b9e7f2e31c1c.tar.gz |
more modifications for FreeBSD port
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 ;; *) |