svn commit: r364310 - head/devel/ocaml-findlib/files

Johan van Selst johans at FreeBSD.org
Thu Aug 7 18:09:12 UTC 2014


Author: johans
Date: Thu Aug  7 18:09:12 2014
New Revision: 364310
URL: http://svnweb.freebsd.org/changeset/ports/364310
QAT: https://qat.redports.org/buildarchive/r364310/

Log:
  Fix build issue as unprivileged user:
  ${BSD_INSTALL_DATA} -d apparently does not create executable directories
  
  Submitted by:	mandree

Modified:
  head/devel/ocaml-findlib/files/patch-src_findlib-toolbox_Makefile

Modified: head/devel/ocaml-findlib/files/patch-src_findlib-toolbox_Makefile
==============================================================================
--- head/devel/ocaml-findlib/files/patch-src_findlib-toolbox_Makefile	Thu Aug  7 16:57:00 2014	(r364309)
+++ head/devel/ocaml-findlib/files/patch-src_findlib-toolbox_Makefile	Thu Aug  7 18:09:12 2014	(r364310)
@@ -5,7 +5,7 @@
  
  install:
 -	cp make_wizard$(EXEC_SUFFIX) make_wizard.pattern $(prefix)$(OCAML_SITELIB)/findlib
-+	${BSD_INSTALL_DATA}  -d $(DESTDIR)$(prefix)$(OCAML_SITELIB)/findlib
++	${MKDIR} -p $(DESTDIR)$(prefix)$(OCAML_SITELIB)/findlib
 +	${BSD_INSTALL_DATA}  make_wizard$(EXEC_SUFFIX) make_wizard.pattern $(DESTDIR)$(prefix)$(OCAML_SITELIB)/findlib
  
  # uninstall: Nothing to do, because the removal of the findlib core also


More information about the svn-ports-all mailing list