freebsd-ports/emulators/hfs/scripts/configure

15 lines
322 B
Text
Raw Normal View History

#!/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
2000-02-07 23:05:10 +01:00
exit 0;