mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 18:20:33 -04:00
Same as BSDMAKE variable. It is needed by some ports. Some ports needed fixes: - devel/rcs57: Regenerate configure with newer autoconf so it can deal with MAKE set to an absolute path. While here fix issues with (un)escaping double quotes. The warnings about this were in WRKSRC/src/conf.err. - lang/gnu-cobol: Patch configure.ac so the MAKE environment variable can contain an absolute path, and define MAKE before it is used in AM_INIT_AUTOMAKE. Remove post-patch patching of configure. It appears to have been fixed upstream. - math/unuran: Remove post-patch, fixed upstream. - net-mgmt/kismet: Fix post-patch. PR: 283534 Exp-run by: antoine
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
--- src/conf.sh.orig 1995-06-16 06:19:24 UTC
|
|
+++ src/conf.sh
|
|
@@ -43,7 +43,7 @@ Id='$Id: conf.sh,v 5.25 1995/06/16 06:19:24 eggert Exp
|
|
: ${DIFF_L=1}
|
|
: ${DIFF_SUCCESS=0} ${DIFF_FAILURE=1} ${DIFF_TROUBLE=2}
|
|
: ${ED=/bin/ed}
|
|
-: ${SENDMAIL='"/usr/lib/sendmail"'}
|
|
+: ${SENDMAIL=/usr/lib/sendmail}
|
|
# : ${LDFLAGS=} ${LIBS=} tickles old shell bug
|
|
|
|
C="$CC $ALL_CFLAGS"
|
|
@@ -73,17 +73,6 @@ esac
|
|
ech='echo -n' dots='... '
|
|
esac
|
|
|
|
-$ech >&3 "$0: testing permissions $dots"
|
|
-rm -f a.d &&
|
|
-date >a.d &&
|
|
-chmod 0 a.d &&
|
|
-{ test -w a.d || cp /dev/null a.d 2>/dev/null; } && {
|
|
- echo >&3 "$n$0: This command should not be run with superuser permissions."
|
|
- exit 1
|
|
-}
|
|
-echo >&3 OK
|
|
-rm -f a.d || exit
|
|
-
|
|
$ech >&3 "$0: testing compiler for plausibility $dots"
|
|
echo 'main() { return 0; }' >a.c
|
|
rm -f a.exe a.out || exit
|
|
@@ -2053,7 +2042,7 @@ esac
|
|
'') a='/* ' z='*/ ';;
|
|
*) a= z=
|
|
esac
|
|
-echo "$a#define SENDMAIL $SENDMAIL $z/* how to send mail */"
|
|
+echo "$a#define SENDMAIL \"$SENDMAIL\" $z/* how to send mail */"
|
|
|
|
: configuring TZ_must_be_set
|
|
echo "#define TZ_must_be_set 0 /* Must TZ be set for gmtime() to work? */"
|