diff options
Diffstat (limited to 'devel/ice/files/patch-Makefile')
-rw-r--r-- | devel/ice/files/patch-Makefile | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/devel/ice/files/patch-Makefile b/devel/ice/files/patch-Makefile index 9a28e26957d5..b0099528c0cf 100644 --- a/devel/ice/files/patch-Makefile +++ b/devel/ice/files/patch-Makefile @@ -1,30 +1,29 @@ ---- Makefile.orig Fri May 21 16:33:04 2004 -+++ Makefile Thu Jul 22 19:46:03 2004 -@@ -49,12 +49,14 @@ - chmod a+rx $(install_slicedir) ; \ +--- Makefile.orig Tue Jul 5 19:58:47 2005 ++++ Makefile Tue Jul 5 19:59:39 2005 +@@ -44,11 +44,13 @@ + $(call mkdir,$(install_slicedir)) ; \ fi +ifndef NOPORTDOCS @if test ! -d $(install_docdir) ; \ then \ echo "Creating $(install_docdir)..." ; \ - mkdir $(install_docdir) ; \ - chmod a+rx $(install_docdir) ; \ + $(call mkdir,$(install_docdir)) ; \ fi +endif $(EVERYTHING):: @for subdir in $(SUBDIRS); \ -@@ -67,9 +69,11 @@ +@@ -61,9 +63,11 @@ @( cd doc && $(MAKE) ) || exit 1 install:: +ifndef NOPORTDOCS @( cd doc && $(MAKE) install ) || exit 1 -- $(INSTALL) ICE_LICENSE $(prefix) -- $(INSTALL) LICENSE $(prefix) -+ $(INSTALL) ICE_LICENSE $(install_docdir) -+ $(INSTALL) LICENSE $(install_docdir) +- $(call installdata,ICE_LICENSE,$(prefix)) +- $(call installdata,LICENSE,$(prefix)) ++ $(call installdata,ICE_LICENSE,$(install_docdir)) ++ $(call installdata,LICENSE,$(install_docdir)) +endif clean:: |