diff options
author | cy <cy@FreeBSD.org> | 2016-04-15 14:15:24 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2016-04-15 14:15:24 +0800 |
commit | 318d3e4f8ef780416ac150ee7b997882a1f0d75d (patch) | |
tree | 296e62ea35c0573c6b640363b401609dbd83af8e /net | |
parent | b3f82edc1e952247ef1491606c901e8b6ae5e641 (diff) | |
download | freebsd-ports-gnome-318d3e4f8ef780416ac150ee7b997882a1f0d75d.tar.gz freebsd-ports-gnome-318d3e4f8ef780416ac150ee7b997882a1f0d75d.tar.zst freebsd-ports-gnome-318d3e4f8ef780416ac150ee7b997882a1f0d75d.zip |
Fix build broken by r412929.
Diffstat (limited to 'net')
-rw-r--r-- | net/fspclient/files/patch-client__local__SConscript | 10 | ||||
-rw-r--r-- | net/fspclient/files/patch-client__remote__SConscript | 9 |
2 files changed, 19 insertions, 0 deletions
diff --git a/net/fspclient/files/patch-client__local__SConscript b/net/fspclient/files/patch-client__local__SConscript new file mode 100644 index 000000000000..dde24498ab00 --- /dev/null +++ b/net/fspclient/files/patch-client__local__SConscript @@ -0,0 +1,10 @@ +--- client/local/SConscript.orig 2009-09-15 13:34:20.000000000 -0700 ++++ client/local/SConscript 2016-04-14 23:12:32.843629000 -0700 +@@ -10,6 +10,7 @@ + + curdir=Dir('.').srcnode().path + env.Command('table.h',sources,'cd %s;../maketable l' % curdir) ++env.Ignore('table.h','table.h') + + local=env.StaticLibrary(target = 'local', source = sources) + env.Export("local") diff --git a/net/fspclient/files/patch-client__remote__SConscript b/net/fspclient/files/patch-client__remote__SConscript new file mode 100644 index 000000000000..d32947e61cc7 --- /dev/null +++ b/net/fspclient/files/patch-client__remote__SConscript @@ -0,0 +1,9 @@ +--- client/remote/SConscript.orig 2009-09-15 13:34:20.000000000 -0700 ++++ client/remote/SConscript 2016-04-14 23:12:46.139184000 -0700 +@@ -9,5 +9,6 @@ + + curdir=Dir('.').srcnode().path + env.Command('table.h',sources,'cd %s;../maketable r' % curdir) ++env.Ignore('table.h','table.h') + + env.Export("remote") |