/hg/icedtea6: Simplify naming of the pulse-java build directory ...

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Tue Jul 6 10:46:50 PDT 2010


changeset aecac87c5af7 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=aecac87c5af7
author: Andrew John Hughes <ahughes at redhat.com>
date: Tue Jul 06 18:46:18 2010 +0100

	Simplify naming of the pulse-java build directory and include the
	jar file in the pulse java build tree.

	2010-07-06 Andrew John Hughes <ahughes at redhat.com>

	 * Makefile.am: (PULSE_JAVA_BUILDDIR): Use a
	different name from the source directory to avoid confusion.
	(clean-local): jni-common.o is not in the top-level
	directory. (icedtea): Locate pulse-java.jar in build
	directory not top-level directory. (icedtea-debug):
	Likewise. (pulse-java-jar): Likewise. (clean-pulse-
	java): Likewise. Given clean-pulse-java only exists when
	PULSE_JAVA_NATIVE_BUILDDIR and PULSE_JAVA_CLASS_DIR are set,
	there is no need to test them.


diffstat:

2 files changed, 26 insertions(+), 15 deletions(-)
ChangeLog   |   16 ++++++++++++++++
Makefile.am |   25 ++++++++++---------------

diffs (96 lines):

diff -r 5c61be3119bb -r aecac87c5af7 ChangeLog
--- a/ChangeLog	Mon Jul 05 17:31:35 2010 +0100
+++ b/ChangeLog	Tue Jul 06 18:46:18 2010 +0100
@@ -1,3 +1,19 @@ 2010-07-05  Andrew John Hughes  <ahughes
+2010-07-06  Andrew John Hughes  <ahughes at redhat.com>
+
+	* Makefile.am:
+	(PULSE_JAVA_BUILDDIR): Use a different name from
+	the source directory to avoid confusion.
+	(clean-local): jni-common.o is not in the top-level
+	directory.
+	(icedtea): Locate pulse-java.jar in build directory
+	not top-level directory.
+	(icedtea-debug): Likewise.
+	(pulse-java-jar): Likewise.
+	(clean-pulse-java): Likewise.  Given clean-pulse-java
+	only exists when PULSE_JAVA_NATIVE_BUILDDIR and
+	PULSE_JAVA_CLASS_DIR are set, there is no need to test
+	them.
+
 2010-07-05  Andrew John Hughes  <ahughes at redhat.com>
 
 	Revert rt.jar only for ecj tree.  Don't do
diff -r 5c61be3119bb -r aecac87c5af7 Makefile.am
--- a/Makefile.am	Mon Jul 05 17:31:35 2010 +0100
+++ b/Makefile.am	Tue Jul 06 18:46:18 2010 +0100
@@ -125,7 +125,7 @@ PULSE_JAVA_DIR = $(abs_top_srcdir)/pulse
 PULSE_JAVA_DIR = $(abs_top_srcdir)/pulseaudio
 PULSE_JAVA_NATIVE_SRCDIR = $(PULSE_JAVA_DIR)/src/native
 PULSE_JAVA_NATIVE_SRCS = $(wildcard $(PULSE_JAVA_NATIVE_SRCDIR)/*.c)
-PULSE_JAVA_BUILDDIR = $(abs_top_builddir)/pulseaudio
+PULSE_JAVA_BUILDDIR = $(abs_top_builddir)/pulseaudio.build
 PULSE_JAVA_NATIVE_BUILDDIR = $(PULSE_JAVA_BUILDDIR)/native
 PULSE_JAVA_NATIVE_OBJECTS = \
 	$(subst $(PULSE_JAVA_NATIVE_SRCDIR),$(PULSE_JAVA_NATIVE_BUILDDIR),$(patsubst %.c,%.o,$(PULSE_JAVA_NATIVE_SRCS)))
@@ -522,7 +522,6 @@ clean-local: clean-jtreg clean-jtreg-rep
 	if [ -e lib ]; then \
 	  rmdir lib ; \
 	fi
-	rm -f jni-common.o
 
 distclean-local: clean-download clean-hgforest
 	if [ $(abs_top_srcdir) != $(abs_top_builddir) ]; then \
@@ -1214,9 +1213,9 @@ if ENABLE_PULSE_JAVA
 	  $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
 	cp -pPRf $(PULSE_JAVA_NATIVE_BUILDDIR)/libpulse-java.so \
 	  $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
-	cp -pPRf pulse-java.jar \
+	cp -pPRf $(PULSE_JAVA_BUILDDIR)/pulse-java.jar \
 	  $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/ext
-	cp -pPRf pulse-java.jar \
+	cp -pPRf $(PULSE_JAVA_BUILDDIR)/pulse-java.jar \
 	  $(BUILD_OUTPUT_DIR)/j2re-image/lib/ext
 	(cd $(PULSE_JAVA_JAVA_SRCDIR) && \
 	   $(ZIP) -qur $(BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org )
@@ -1290,9 +1289,9 @@ if ENABLE_PULSE_JAVA
 	  $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
 	cp -pPRf $(PULSE_JAVA_NATIVE_BUILDDIR)/libpulse-java.so \
 	  $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
-	cp -pPRf pulse-java.jar \
+	cp -pPRf $(PULSE_JAVA_BUILDDIR)/pulse-java.jar \
 	  $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/ext
-	cp -pPRf pulse-java.jar \
+	cp -pPRf $(PULSE_JAVA_BUILDDIR)/pulse-java.jar \
 	  $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/ext
 	(cd $(PULSE_JAVA_JAVA_SRCDIR) && \
 	   $(ZIP) -qur $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org )
@@ -1581,7 +1580,7 @@ stamps/pulse-java.stamp: stamps/pulse-ja
 
 stamps/pulse-java-jar.stamp: stamps/pulse-java-class.stamp
 	mkdir -p $(PULSE_JAVA_CLASS_DIR);
-	$(BOOT_DIR)/bin/jar cf pulse-java.jar -C $(PULSE_JAVA_CLASS_DIR) .;
+	$(BOOT_DIR)/bin/jar cf $(PULSE_JAVA_BUILDDIR)/pulse-java.jar -C $(PULSE_JAVA_CLASS_DIR) .;
 	mkdir -p stamps
 	touch stamps/pulse-java-jar.stamp
 
@@ -1613,15 +1612,11 @@ stamps/pulse-java-headers.stamp: stamps/
 	touch stamps/pulse-java-headers.stamp
 
 clean-pulse-java:
-	[ -z "$(PULSE_JAVA_NATIVE_BUILDDIR)" ] || rm -rf $(PULSE_JAVA_NATIVE_BUILDDIR)
-	[ -z "$(PULSE_JAVA_CLASS_DIR)" ] || rm -rf $(PULSE_JAVA_CLASS_DIR)
+	rm -rf $(PULSE_JAVA_NATIVE_BUILDDIR)
+	rm -rf $(PULSE_JAVA_CLASS_DIR)
+	rm -f $(PULSE_JAVA_BUILDDIR)/pulse-java.jar
+	rmdir $(PULSE_JAVA_BUILDDIR)
 	rm -f stamps/pulse-java*.stamp
-	rm -f pulse-java.jar
-	if [ $(abs_top_srcdir) != $(abs_top_builddir) ]; then \
-	  if [ -e $(abs_top_builddir)/pulseaudio ] ; then \
-	    rmdir $(abs_top_builddir)/pulseaudio ; \
-	  fi ; \
-	fi
 endif
 
 # end of pulse-java



More information about the distro-pkg-dev mailing list