aboutsummaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2012-12-21 05:21:24 +0000
committerRob Austein <sra@hactrn.net>2012-12-21 05:21:24 +0000
commit32140f67de9605a4e7446824b8be4f99fd043834 (patch)
treeee2231c2ff88dd0bc6214a727ae8eb096f9e6559 /buildtools
parentcfa04c3add9e0fbdc158ab0092ef81cd591bba76 (diff)
Set NO_DEPENDS while building pkg-plist.
svn path=/trunk/; revision=4941
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/build-freebsd-port.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildtools/build-freebsd-port.py b/buildtools/build-freebsd-port.py
index 2869f1b1..5f31d0ed 100644
--- a/buildtools/build-freebsd-port.py
+++ b/buildtools/build-freebsd-port.py
@@ -127,7 +127,8 @@ print "Running make configure"
# Not sure what this is about, seems to trigger on empty pkg-plist, so just disable
# this while generating pkg-plist so we can leave proper USE_GNOME setting in Makefile.
-subprocess.check_call(("make", "configure", "DISTDIR=" + os.getcwd(), "USE_GNOME="),
+subprocess.check_call(("make", "configure", "DISTDIR=" + os.getcwd(),
+ "USE_GNOME=", "NO_DEPENDS=yes"),
cwd = base)
print "Running make installation-manifest"