diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1994-11-17 23:15:38 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1994-11-17 23:15:38 +0000 |
commit | 4f6f6eb434d522cd0c8d7025c3436e82052db186 (patch) | |
tree | 44da1d0debb69692f5e68902d6f6dd065c646060 /emulators/hfs/scripts | |
parent | Update to new version (diff) |
hfs - program for reading Macintosh HFS floppy disks, hard drives and CDROMs
Notes
Notes:
svn path=/head/; revision=407
Diffstat (limited to 'emulators/hfs/scripts')
-rw-r--r-- | emulators/hfs/scripts/configure | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/emulators/hfs/scripts/configure b/emulators/hfs/scripts/configure new file mode 100644 index 000000000000..a91df6c6a53d --- /dev/null +++ b/emulators/hfs/scripts/configure @@ -0,0 +1,14 @@ +#!/bin/sh + +cd $WRKSRC || exit 1; + +mv Makefile Makefile.orig || exit 1; + +sed -e 's:/usr/.* ::' <Makefile.orig>Makefile + +echo "DEBUG = -O" >> Makefile +echo "INSTALLPATH = $PREFIX" >> Makefile +echo "CCPLUSPLUS = c++ -c" >> Makefile +echo "LD = c++" >> Makefile +echo "MANINSTALLDIR = $PREFIX/man/man1" >> Makefile +exit 0;
\ No newline at end of file |