mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
18 lines
425 B
Bash
18 lines
425 B
Bash
#!/bin/sh
|
|
#
|
|
#
|
|
# If this is FreeBSD 2.2 or later, this will work. Older FreeBSD versions
|
|
# will set CFLAGS to "". Life's a bitch.
|
|
#
|
|
CFLAGS=`make -V CFLAGS echo` || echo "*** Ignore this error"
|
|
|
|
if [ X"$CFLAGS" = X ] ; then
|
|
CFLAGS="-O2 -fno-strength-reduce"
|
|
fi
|
|
|
|
cd $WRKSRC
|
|
echo "Setting CFLAGS to \"$CFLAGS\""
|
|
sed -e "s/%CFLAGS%/${CFLAGS}/" makefile >makefile.new
|
|
mv -f makefile makefile.orig2
|
|
mv -f makefile.new makefile
|