diff options
author | Simon Barner <barner@FreeBSD.org> | 2008-09-23 07:02:14 +0000 |
---|---|---|
committer | Simon Barner <barner@FreeBSD.org> | 2008-09-23 07:02:14 +0000 |
commit | 40b4b2301729b2fe7aa8d79849ce31924b562138 (patch) | |
tree | eace253335aef475a6e397eebe192fc0c3840c42 /devel | |
parent | 50fa1f3d566a82c27447f5dee1b405903e1d7aa4 (diff) |
Notes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/valgrind-snapshot/Makefile | 2 | ||||
-rw-r--r-- | devel/valgrind/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/devel/valgrind-snapshot/Makefile b/devel/valgrind-snapshot/Makefile index a7192cc1cf67..202ed48f13ce 100644 --- a/devel/valgrind-snapshot/Makefile +++ b/devel/valgrind-snapshot/Makefile @@ -48,7 +48,7 @@ PLIST_SUB+= RELENG_6="@comment " PLIST_SUB+= RELENG_7="@comment " .endif -PROCFS!= /sbin/mount | ${GREP} '^procfs' | ${AWK} '{print $1}' +PROCFS!= if test -r /proc/curproc/status; then echo "procfs"; else echo ""; fi pre-everything:: diff --git a/devel/valgrind/Makefile b/devel/valgrind/Makefile index 2b8d1bbdf03b..ba58c0ef80ab 100644 --- a/devel/valgrind/Makefile +++ b/devel/valgrind/Makefile @@ -44,7 +44,7 @@ PLIST_SUB+= RELENG_6="@comment " PLIST_SUB+= RELENG_7="@comment " .endif -PROCFS!= /sbin/mount | ${GREP} '^procfs' | ${AWK} '{print $1}' +PROCFS!= if test -r /proc/curproc/status; then echo "procfs"; else echo ""; fi pre-everything:: |