* device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 20 Aug 2005 18:51:10 +0000 (18:51 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 20 Aug 2005 18:51:10 +0000 (18:51 +0000)
* 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

ChangeLog
as/Makefile
device/lib/Makefile.in

index 1f3f4daf417f3844e5b97a7f86385f3fff8608d1..0af0d3ff99f2dada7662f8b73bb31b786a4f3456 100644 (file)
--- 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 <sourceforge.brock AT dse.nl>
 
index 80dd2f62aec51f4160664e2c57bea0dd7ffa6ed1..a2b8623f3b5e039f3e2fd173106235921d93ce59 100644 (file)
@@ -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)
index 81449e3ba65161287d9a3f083197ab725b30b7c6..c6f0fb90627adbfeb720b5895f185136d86f52aa 100644 (file)
@@ -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         = ../..