diff options
Diffstat (limited to 'graphics/povray/files/patch-Makefile.in')
-rw-r--r-- | graphics/povray/files/patch-Makefile.in | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/graphics/povray/files/patch-Makefile.in b/graphics/povray/files/patch-Makefile.in new file mode 100644 index 000000000000..13845f786e6b --- /dev/null +++ b/graphics/povray/files/patch-Makefile.in @@ -0,0 +1,56 @@ +--- Makefile.in.orig Thu Aug 8 21:51:07 2002 ++++ Makefile.in Sat Aug 17 08:01:49 2002 +@@ -88,6 +88,7 @@ + PACKAGE = @PACKAGE@ + VERSION = @VERSION@ + SUBDIRS = doc include ini scenes scripts src tests ++SUBDIRS_DATA = include ini scenes scripts src tests + docdir = $(prefix)/share/doc/@PACKAGE@-@VERSION@ + doc_DATA = povlegal.doc povwhere.txt gamma.gif gamma.gif.txt README README.unix + povlibdir = @datadir@/povray-3.5 +@@ -99,7 +100,7 @@ + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_HEADER = ./src/conf.h + CONFIG_CLEAN_FILES = +-DATA = $(doc_DATA) $(povlib_DATA) ++DATA = $(povlib_DATA) #$(doc_DATA) + + DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \ + Makefile.in NEWS aclocal.m4 configure configure.in install-sh missing \ +@@ -202,7 +203,26 @@ + + @SET_MAKE@ + +-all-recursive install-data-recursive install-exec-recursive \ ++install-data-recursive: ++ @set fnord $(MAKEFLAGS); amf=$$2; \ ++ dot_seen=no; \ ++ target=`echo $@ | sed s/-recursive//`; \ ++ list='$(SUBDIRS_DATA)'; for subdir in $$list; do \ ++ echo "Making $$target in $$subdir"; \ ++ if test "$$subdir" = "."; then \ ++ dot_seen=yes; \ ++ local_target="$$target-am"; \ ++ else \ ++ local_target="$$target"; \ ++ fi; \ ++ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ done; \ ++ if test "$$dot_seen" = "no"; then \ ++ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ ++ fi; test -z "$$fail" ++ ++all-recursive install-exec-recursive \ + installdirs-recursive install-recursive uninstall-recursive \ + check-recursive installcheck-recursive info-recursive dvi-recursive: + @set fnord $(MAKEFLAGS); amf=$$2; \ +@@ -351,7 +371,7 @@ + install-exec-am: + install-exec: install-exec-recursive + +-install-data-am: install-docDATA install-povlibDATA ++install-data-am: install-povlibDATA + install-data: install-data-recursive + + install-am: all-am |