From: borutr Date: Sat, 20 Aug 2005 18:51:10 +0000 (+0000) Subject: * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=3cc6e3377eecfbd9cbd93335bab2ebbb96e9a97c;p=fw%2Fsdcc * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option * as/Makefile: find on sparc-solaris does not support -maxdepth option git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3863 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 1f3f4daf..0af0d3ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,8 @@ sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on sparc-solaris, which doesn't use GNU ld linker + * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option + * as/Makefile: find on sparc-solaris does not support -maxdepth option 2005-08-19 Maarten Brock diff --git a/as/Makefile b/as/Makefile index 80dd2f62..a2b8623f 100644 --- a/as/Makefile +++ b/as/Makefile @@ -19,7 +19,7 @@ install: all install-doc install-doc: $(INSTALL) -d $(DESTDIR)$(docdir)/aslink - cp -f `find doc -maxdepth 1 -type f` $(DESTDIR)$(docdir)/aslink + cp -f doc/* $(DESTDIR)$(docdir)/aslink uninstall: cd $(DESTDIR)$(bindir); rm -f as-z80$(EXEEXT) as-gbz80$(EXEEXT) as-hc08$(EXEEXT) diff --git a/device/lib/Makefile.in b/device/lib/Makefile.in index 81449e3b..c6f0fb90 100644 --- a/device/lib/Makefile.in +++ b/device/lib/Makefile.in @@ -15,7 +15,7 @@ CP = @CP@ ifeq ($(shell uname -s),SunOS) CP_U = $(CP) else -CP_U = $(CP) -p +CP_U = $(CP) -u endif PRJDIR = ../..