diff options
author | riggs <riggs@FreeBSD.org> | 2015-02-01 23:27:13 +0800 |
---|---|---|
committer | riggs <riggs@FreeBSD.org> | 2015-02-01 23:27:13 +0800 |
commit | 9bfbe87634c6284d71affad2409620e3463daaf2 (patch) | |
tree | 9918bd12ecaaa282e2f37fc6e088bd01cc1ecd65 /sysutils/lsof | |
parent | 902928d76c14d6c18d0af6c9f59c1b742b0ceb8c (diff) | |
download | freebsd-ports-gnome-9bfbe87634c6284d71affad2409620e3463daaf2.tar.gz freebsd-ports-gnome-9bfbe87634c6284d71affad2409620e3463daaf2.tar.zst freebsd-ports-gnome-9bfbe87634c6284d71affad2409620e3463daaf2.zip |
Fix build on systems without /etc/make.conf
PR: 197241
Submitted by: riggs
Approved by: ler@lerctr.org (maintainer)
MFH: 2015Q1
Diffstat (limited to 'sysutils/lsof')
-rw-r--r-- | sysutils/lsof/files/patch-Configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/lsof/files/patch-Configure b/sysutils/lsof/files/patch-Configure new file mode 100644 index 000000000000..3d5fd5118a4b --- /dev/null +++ b/sysutils/lsof/files/patch-Configure @@ -0,0 +1,11 @@ +--- Configure.orig 2014-12-19 19:55:04.000000000 +0100 ++++ Configure 2015-02-01 12:45:30.783557202 +0100 +@@ -1642,7 +1642,7 @@ + then + FREEBSD_MAKE_CONF="/etc/make.conf" + fi # } +- if test -r $FREEBSD_MAKE_CONF # { ++ if test $FREEBSD_MAKE_CONF # { + then + LSOF_TMP1=`echo "all:\n.include <bsd.prog.mk>" | $LSOF_MAKE -f- -VCFLAGS` + LSOF_TMP=1 |