diff options
author | lofi <lofi@FreeBSD.org> | 2004-08-06 20:25:54 +0800 |
---|---|---|
committer | lofi <lofi@FreeBSD.org> | 2004-08-06 20:25:54 +0800 |
commit | 1ada52bac97ea4409f7d37d3f22ed92146f45d45 (patch) | |
tree | 9d0304d26a63b4f2794e408d61a411bd3e9c5130 /devel | |
parent | 7f8ec3da6aad74e71ff0ae4923b59533cecc24ab (diff) | |
download | freebsd-ports-gnome-1ada52bac97ea4409f7d37d3f22ed92146f45d45.tar.gz freebsd-ports-gnome-1ada52bac97ea4409f7d37d3f22ed92146f45d45.tar.zst freebsd-ports-gnome-1ada52bac97ea4409f7d37d3f22ed92146f45d45.zip |
Instead of just checking for PACKAGE_BUILDING, don't let the check for
procfs stop the portbuild at all. Displaying a warning is fine, breaking
the build over a runtime requirement that does not break building the port
is not.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/valgrind-snapshot/Makefile | 3 | ||||
-rw-r--r-- | devel/valgrind/Makefile | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/devel/valgrind-snapshot/Makefile b/devel/valgrind-snapshot/Makefile index 8523035bbe6f..182b69aabf13 100644 --- a/devel/valgrind-snapshot/Makefile +++ b/devel/valgrind-snapshot/Makefile @@ -38,7 +38,6 @@ PROCFS!= /sbin/mount | ${GREP} '^procfs' | ${AWK} '{print $1}' pre-everything:: -.if !defined(PACKAGE_BUILDING) .if ${PROCFS} @${ECHO_CMD} "" @${ECHO_CMD} "Check if procfs is running: YES" @@ -52,8 +51,6 @@ pre-everything:: @${ECHO_CMD} "proc /proc procfs rw 0 0" @${ECHO_CMD} "" @${ECHO_CMD} "-----------------------------------------------------------" - @${FALSE} -.endif .endif pre-patch: diff --git a/devel/valgrind/Makefile b/devel/valgrind/Makefile index b4c31378faaf..d48de5783bcc 100644 --- a/devel/valgrind/Makefile +++ b/devel/valgrind/Makefile @@ -42,7 +42,6 @@ PROCFS!= /sbin/mount | ${GREP} '^procfs' | ${AWK} '{print $1}' pre-everything:: -.if !defined(PACKAGE_BUILDING) .if ${PROCFS} @${ECHO_CMD} "" @${ECHO_CMD} "Check if procfs is running: YES" @@ -56,8 +55,6 @@ pre-everything:: @${ECHO_CMD} "proc /proc procfs rw 0 0" @${ECHO_CMD} "" @${ECHO_CMD} "-----------------------------------------------------------" - @${FALSE} -.endif .endif pre-patch: |