Don't pass the -d switch to cp(1) as it is a linux-ism.

PR:		ports/78086
Submitted by:	conrads at cox dot net (with cleanups)
This commit is contained in:
Bruce M Simpson 2005-02-28 15:45:46 +00:00
parent 14e61b4048
commit 612cc747a0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=130027
3 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,13 @@
--- doc/algorithm/Makefile.in.orig Wed Dec 1 16:07:11 2004
+++ doc/algorithm/Makefile.in Mon Feb 28 15:33:41 2005
@@ -380,8 +380,8 @@
install-data-hook:
- cp -dp *.htm $(DESTDIR)$(algodir)
- cp -dpR figs $(DESTDIR)$(algodir)
+ cp -p *.htm $(DESTDIR)$(algodir)
+ cp -pR figs $(DESTDIR)$(algodir)
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

View file

@ -0,0 +1,11 @@
--- doc/api/Makefile.in.orig Wed Dec 1 16:07:11 2004
+++ doc/api/Makefile.in Mon Feb 28 15:33:41 2005
@@ -388,7 +388,7 @@
doxygen $(srcdir)/dirac_api.doxygen
install-data-hook:
- cp -dR html/* $(DESTDIR)$(htmldir)
+ cp -R html/* $(DESTDIR)$(htmldir)
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

View file

@ -0,0 +1,11 @@
--- doc/programmers/Makefile.in.orig Wed Dec 1 16:07:11 2004
+++ doc/programmers/Makefile.in Mon Feb 28 15:33:41 2005
@@ -387,7 +387,7 @@
dvipdfm programmers_guide.dvi
install-data-hook:
- cp -d programmers_guide.pdf $(DESTDIR)$(latexdir)
+ cp programmers_guide.pdf $(DESTDIR)$(latexdir)
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: