freebsd-ports/textproc/rotix/files/patch-configure
Pav Lucistnik 1678746924 - Fix build: 'expr -- --i18n=1' doesn't work on -STABLE.
Revert to 'expr --i18n=1' and set EXPR_COMPAT in CONFIGURE_ENV for -CURRENT.
- Use PLIST_FILES

PR:		ports/62251
Submitted by:	Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
2004-02-02 22:34:28 +00:00

14 lines
409 B
Text

--- configure.orig Sun Jan 27 13:00:06 2002
+++ configure Sun Oct 20 03:32:06 2002
@@ -83,9 +83,9 @@
fi
if type gcc > /dev/null 2> /dev/null; then
- echo "CC=gcc" >> Makefile.settings;
+ echo "CC?=gcc" >> Makefile.settings;
elif type cc > /dev/null 2> /dev/null; then
- echo "CC=cc" >> Makefile.settings;
+ echo "CC?=cc" >> Makefile.settings;
else
echo 'Cannot find a C compiler, aborting.'
exit 1;