somehow, I copied over the `no regress' from previous autoconfs.

No need to bump the pkgname, this affects only regress.
This commit is contained in:
espie 2005-09-11 08:14:45 +00:00
parent 441579e84b
commit 3802afdcd2
2 changed files with 30 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.2 2004/07/31 21:17:22 naddy Exp $
# $OpenBSD: Makefile,v 1.3 2005/09/11 08:14:45 espie Exp $
COMMENT= "automatically configure source code on many Un*x platforms"
@ -29,6 +29,4 @@ FAKE_FLAGS= ${MAKE_FLAGS} DESTDIR=${WRKINST} lispdir=
#USE_GMAKE= Yes
SUBST_VARS= SUFFIX
NO_REGRESS= Yes
.include <bsd.port.mk>

View File

@ -0,0 +1,29 @@
$OpenBSD: patch-tests_c_at,v 1.1 2005/09/11 08:14:45 espie Exp $
--- tests/c.at.orig Sun Sep 11 10:06:46 2005
+++ tests/c.at Sun Sep 11 10:09:49 2005
@@ -142,12 +142,12 @@ AT_CLEANUP
AT_SETUP([AC_PROG_CPP without warnings])
# Ignore if /lib/cpp doesn't work
-AT_CHECK([/lib/cpp </dev/null || exit 77], [], [ignore], [ignore])
+AT_CHECK([/usr/bin/cpp </dev/null || exit 77], [], [ignore], [ignore])
# A cpp which exit status is meaningless.
AT_DATA([mycpp],
[[#! /bin/sh
-/lib/cpp "$@"
+/usr/bin/cpp "$@"
exit 0
]])
@@ -178,8 +178,8 @@ AT_CLEANUP
AT_SETUP([AC_PROG_CPP via CC])
-# Ignore if /lib/cpp doesn't work
-AT_CHECK([/lib/cpp </dev/null || exit 77], [], [ignore], [ignore])
+# Ignore if /usr/bin/cpp doesn't work
+AT_CHECK([/usr/bin/cpp </dev/null || exit 77], [], [ignore], [ignore])
AT_DATA([mycc],
[[#! /bin/sh