changeset in /hg/icedtea: 2008-02-11 Lillian Angel <langel at red...

Lillian Angel langel at redhat.com
Mon Feb 11 06:54:02 PST 2008


changeset a7c3e7ef7dfc in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=a7c3e7ef7dfc
description:
	2008-02-11  Lillian Angel  <langel at redhat.com>

	        * Makefile.am: Changed cp -a arg to -dpPR.
	        * Makefile.in: Regenerate.

diffstat:

3 files changed, 27 insertions(+), 22 deletions(-)
ChangeLog   |    5 +++++
Makefile.am |   22 +++++++++++-----------
Makefile.in |   22 +++++++++++-----------

diffs (186 lines):

diff -r d4e8f0d8d7b5 -r a7c3e7ef7dfc ChangeLog
--- a/ChangeLog	Thu Feb 07 13:19:13 2008 -0500
+++ b/ChangeLog	Mon Feb 11 09:49:39 2008 -0500
@@ -1,3 +1,8 @@ 2008-02-07  Lillian Angel  <langel at redha
+2008-02-11  Lillian Angel  <langel at redhat.com>
+
+	* Makefile.am: Changed cp -a arg to -dpPR.
+	* Makefile.in: Regenerate.
+
 2008-02-07  Lillian Angel  <langel at redhat.com>
 
 	* Makefile.in: Regenerate.
diff -r d4e8f0d8d7b5 -r a7c3e7ef7dfc Makefile.am
--- a/Makefile.am	Thu Feb 07 13:19:13 2008 -0500
+++ b/Makefile.am	Mon Feb 11 09:49:39 2008 -0500
@@ -263,7 +263,7 @@ clean-patch:
 # Copy over OpenJDK sources for ecj.
 stamps/clone-ecj.stamp: stamps/patch.stamp
 	if ! test -d openjdk-ecj ; then \
-	    cp -al openjdk openjdk-ecj ; \
+	    cp -dpPRl openjdk openjdk-ecj ; \
 	fi
 	mkdir -p stamps
 	touch stamps/clone-ecj.stamp
@@ -434,9 +434,9 @@ icedtea: stamps/bootstrap-directory-syml
 	  -C openjdk/
 	if test "$(ENABLE_PLUGIN)" == "yes" ; \
 	  then \
-	  cp -af gcjwebplugin.so \
+	  cp -dpPRf gcjwebplugin.so \
 	    $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR) ; \
-	  cp -af gcjwebplugin.so \
+	  cp -dpPRf gcjwebplugin.so \
 	    $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR) ; \
 	fi
 	$(FASTJAR) uf $(BUILD_OUTPUT_DIR)/j2sdk-image/lib/tools.jar \
@@ -453,9 +453,9 @@ icedtea-debug: stamps/bootstrap-director
 	  debug_build
 	if test "$(ENABLE_PLUGIN)" == "yes" ; \
 	  then \
-	  cp -af gcjwebplugin.so \
+	  cp -dpPRf gcjwebplugin.so \
 	    $(BUILD_OUTPUT_DIR)-debug/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR) ; \
-	  cp -af gcjwebplugin.so \
+	  cp -dpPRf gcjwebplugin.so \
 	    $(BUILD_OUTPUT_DIR)-debug/j2re-image/lib/$(INSTALL_ARCH_DIR) ; \
 	fi
 	$(FASTJAR) uf $(BUILD_OUTPUT_DIR)-debug/j2sdk-image/lib/tools.jar \
@@ -569,7 +569,7 @@ stamps/copy-source-files.stamp: stamps/p
 	for copy_dir in $(ICEDTEA_COPY_DIRS) ; \
 	do \
 	  mkdir -p rt/$$copy_dir ; \
-	  cp -af openjdk/jdk/src/share/classes/$$copy_dir/*.java \
+	  cp -dpPRf openjdk/jdk/src/share/classes/$$copy_dir/*.java \
 	    rt/$$copy_dir ; \
 	done
 	mkdir -p stamps
@@ -597,28 +597,28 @@ stamps/hotspot-tools-copy-source-files.s
 	for copy_dir in `cat tools-copy/tools-jdk-copy-files.txt` ; \
 	do \
 	  mkdir -p hotspot-tools/$$copy_dir ; \
-	  cp -arf openjdk/jdk/src/share/classes/$$copy_dir/* \
+	  cp -dpPRf openjdk/jdk/src/share/classes/$$copy_dir/* \
 	    hotspot-tools/$$copy_dir ; \
 	done
 	
 	for copy_dir in `cat tools-copy/tools-langtools-copy-files.txt` ; \
 	do \
 	  mkdir -p hotspot-tools/$$copy_dir ; \
-	  cp -arf openjdk/langtools/src/share/classes/$$copy_dir/* \
+	  cp -dpPRf openjdk/langtools/src/share/classes/$$copy_dir/* \
 	    hotspot-tools/$$copy_dir ; \
 	done
 	
 	for copy_dir in `cat tools-copy/tools-corba-copy-files.txt` ; \
 	do \
 	  mkdir -p hotspot-tools/$$copy_dir ; \
-	  cp -arf openjdk/corba/src/share/classes/$$copy_dir/* \
+	  cp -dpPRf openjdk/corba/src/share/classes/$$copy_dir/* \
 	    hotspot-tools/$$copy_dir ; \
 	done
 	
 	for copy_dir in `cat tools-copy/tools-jaxws-copy-files.txt` ; \
 	do \
 	  mkdir -p hotspot-tools/$$copy_dir ; \
-	  cp -arf openjdk/jaxws/src/share/classes/$$copy_dir/* \
+	  cp -dpPRf openjdk/jaxws/src/share/classes/$$copy_dir/* \
 	    hotspot-tools/$$copy_dir ; \
 	done
 	
@@ -749,7 +749,7 @@ stamps/tools-class-files.stamp: tools-so
           @$< ; \
         fi
 	cp tools/default.jnlp lib/tools
-	cp -r tools/netx/jnlp/resources lib/tools/netx/jnlp
+	cp -R tools/netx/jnlp/resources lib/tools/netx/jnlp
 	mkdir -p stamps
 	touch stamps/tools-class-files.stamp
 
diff -r d4e8f0d8d7b5 -r a7c3e7ef7dfc Makefile.in
--- a/Makefile.in	Thu Feb 07 13:19:13 2008 -0500
+++ b/Makefile.in	Mon Feb 11 09:49:39 2008 -0500
@@ -781,7 +781,7 @@ clean-patch:
 # Copy over OpenJDK sources for ecj.
 stamps/clone-ecj.stamp: stamps/patch.stamp
 	if ! test -d openjdk-ecj ; then \
-	    cp -al openjdk openjdk-ecj ; \
+	    cp -dpPRl openjdk openjdk-ecj ; \
 	fi
 	mkdir -p stamps
 	touch stamps/clone-ecj.stamp
@@ -931,9 +931,9 @@ icedtea: stamps/bootstrap-directory-syml
 	  -C openjdk/
 	if test "$(ENABLE_PLUGIN)" == "yes" ; \
 	  then \
-	  cp -af gcjwebplugin.so \
+	  cp -dpPRf gcjwebplugin.so \
 	    $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR) ; \
-	  cp -af gcjwebplugin.so \
+	  cp -dpPRf gcjwebplugin.so \
 	    $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR) ; \
 	fi
 	$(FASTJAR) uf $(BUILD_OUTPUT_DIR)/j2sdk-image/lib/tools.jar \
@@ -950,9 +950,9 @@ icedtea-debug: stamps/bootstrap-director
 	  debug_build
 	if test "$(ENABLE_PLUGIN)" == "yes" ; \
 	  then \
-	  cp -af gcjwebplugin.so \
+	  cp -dpPRf gcjwebplugin.so \
 	    $(BUILD_OUTPUT_DIR)-debug/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR) ; \
-	  cp -af gcjwebplugin.so \
+	  cp -dpPRf gcjwebplugin.so \
 	    $(BUILD_OUTPUT_DIR)-debug/j2re-image/lib/$(INSTALL_ARCH_DIR) ; \
 	fi
 	$(FASTJAR) uf $(BUILD_OUTPUT_DIR)-debug/j2sdk-image/lib/tools.jar \
@@ -1048,7 +1048,7 @@ stamps/copy-source-files.stamp: stamps/p
 	for copy_dir in $(ICEDTEA_COPY_DIRS) ; \
 	do \
 	  mkdir -p rt/$$copy_dir ; \
-	  cp -af openjdk/jdk/src/share/classes/$$copy_dir/*.java \
+	  cp -dpPRf openjdk/jdk/src/share/classes/$$copy_dir/*.java \
 	    rt/$$copy_dir ; \
 	done
 	mkdir -p stamps
@@ -1066,28 +1066,28 @@ stamps/hotspot-tools-copy-source-files.s
 	for copy_dir in `cat tools-copy/tools-jdk-copy-files.txt` ; \
 	do \
 	  mkdir -p hotspot-tools/$$copy_dir ; \
-	  cp -arf openjdk/jdk/src/share/classes/$$copy_dir/* \
+	  cp -dpPRf openjdk/jdk/src/share/classes/$$copy_dir/* \
 	    hotspot-tools/$$copy_dir ; \
 	done
 
 	for copy_dir in `cat tools-copy/tools-langtools-copy-files.txt` ; \
 	do \
 	  mkdir -p hotspot-tools/$$copy_dir ; \
-	  cp -arf openjdk/langtools/src/share/classes/$$copy_dir/* \
+	  cp -dpPRf openjdk/langtools/src/share/classes/$$copy_dir/* \
 	    hotspot-tools/$$copy_dir ; \
 	done
 
 	for copy_dir in `cat tools-copy/tools-corba-copy-files.txt` ; \
 	do \
 	  mkdir -p hotspot-tools/$$copy_dir ; \
-	  cp -arf openjdk/corba/src/share/classes/$$copy_dir/* \
+	  cp -dpPRf openjdk/corba/src/share/classes/$$copy_dir/* \
 	    hotspot-tools/$$copy_dir ; \
 	done
 
 	for copy_dir in `cat tools-copy/tools-jaxws-copy-files.txt` ; \
 	do \
 	  mkdir -p hotspot-tools/$$copy_dir ; \
-	  cp -arf openjdk/jaxws/src/share/classes/$$copy_dir/* \
+	  cp -dpPRf openjdk/jaxws/src/share/classes/$$copy_dir/* \
 	    hotspot-tools/$$copy_dir ; \
 	done
 
@@ -1218,7 +1218,7 @@ stamps/tools-class-files.stamp: tools-so
           @$< ; \
         fi
 	cp tools/default.jnlp lib/tools
-	cp -r tools/netx/jnlp/resources lib/tools/netx/jnlp
+	cp -R tools/netx/jnlp/resources lib/tools/netx/jnlp
 	mkdir -p stamps
 	touch stamps/tools-class-files.stamp
 



More information about the distro-pkg-dev mailing list