diff options
author | adamw <adamw@FreeBSD.org> | 2004-01-13 23:35:31 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2004-01-13 23:35:31 +0800 |
commit | 82901ad7bcc7b90bdfca7d3a411e931843ff053e (patch) | |
tree | dece81273f1aad0d401d9ee14439017e5cfa7f9d /graphics | |
parent | c38b4cf608a6087128c675b116fa450e932897b0 (diff) | |
download | freebsd-ports-gnome-82901ad7bcc7b90bdfca7d3a411e931843ff053e.tar.gz freebsd-ports-gnome-82901ad7bcc7b90bdfca7d3a411e931843ff053e.tar.zst freebsd-ports-gnome-82901ad7bcc7b90bdfca7d3a411e931843ff053e.zip |
Disable code that was creating /usr/local/lib/gtk-2.0 and not putting
anything in it. There's no need to have this try to create
/usr/X11R6/lib/gtk-2.0 either.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libwmf/files/patch-src::Makefile.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/graphics/libwmf/files/patch-src::Makefile.in b/graphics/libwmf/files/patch-src::Makefile.in new file mode 100644 index 000000000000..1693098f64ca --- /dev/null +++ b/graphics/libwmf/files/patch-src::Makefile.in @@ -0,0 +1,25 @@ +--- src/Makefile.in.orig Tue Jan 13 10:30:08 2004 ++++ src/Makefile.in Tue Jan 13 10:31:35 2004 +@@ -251,14 +251,14 @@ + maintainer-clean-loaderLTLIBRARIES: + + install-loaderLTLIBRARIES: $(loader_LTLIBRARIES) +- @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(loaderdir) +- @list='$(loader_LTLIBRARIES)'; for p in $$list; do \ +- if test -f $$p; then \ +- echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(loaderdir)/$$p"; \ +- $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(loaderdir)/$$p; \ +- else :; fi; \ +- done ++# @$(NORMAL_INSTALL) ++# $(mkinstalldirs) $(DESTDIR)$(loaderdir) ++# @list='$(loader_LTLIBRARIES)'; for p in $$list; do \ ++# if test -f $$p; then \ ++# echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(loaderdir)/$$p"; \ ++# $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(loaderdir)/$$p; \ ++# else :; fi; \ ++# done + + uninstall-loaderLTLIBRARIES: + @$(NORMAL_UNINSTALL) |