r247 - in /packages/gnash/trunk/debian: changelog rules

miriam at users.alioth.debian.org miriam at users.alioth.debian.org
Thu Jun 5 17:35:26 UTC 2008


Author: miriam
Date: Thu Jun  5 17:35:26 2008
New Revision: 247

URL: http://svn.debian.org/wsvn/pkg-flash/?sc=1&rev=247
Log:
Fixed double call to configure and removed bashism


Modified:
    packages/gnash/trunk/debian/changelog
    packages/gnash/trunk/debian/rules

Modified: packages/gnash/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-flash/packages/gnash/trunk/debian/changelog?rev=247&op=diff
==============================================================================
--- packages/gnash/trunk/debian/changelog (original)
+++ packages/gnash/trunk/debian/changelog Thu Jun  5 17:35:26 2008
@@ -43,6 +43,7 @@
   * Removed "DM-Upload-Allowed: yes" from debian/control
   * Added alternative packages with OpenGL as rendering backend:
     gnash-common-opengl
+  * Removed bashism in debian/rules
 
   [ Robert Millan ]
   * Removed debian/patches/rename_sysgnashrc_to_gnashrc.diff (merged).

Modified: packages/gnash/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-flash/packages/gnash/trunk/debian/rules?rev=247&op=diff
==============================================================================
--- packages/gnash/trunk/debian/rules (original)
+++ packages/gnash/trunk/debian/rules Thu Jun  5 17:35:26 2008
@@ -42,7 +42,8 @@
 		--enable-shared=yes --enable-sdk-install \
 		--disable-rpath --enable-lotsa-warnings --without-gcc-arch
 
-config.status: configure.ac
+config: config-stamp
+config-stamp:
 	dh_testdir
 
 	@printf "\n == APPLYING PATCHES ============================================ \n\n"
@@ -72,10 +73,12 @@
 
 	cp libamf/README README.amf
 
+	touch $@
+
 # BUILD
 
 build: build-stamp
-build-stamp:  config.status
+build-stamp:  config-stamp
 	dh_testdir
 
 	@printf "\n == MAKE / AGG ================================================== \n\n"
@@ -94,14 +97,14 @@
 	$(MAKE) -C tmp.opengl check
 	@printf "\n ---------------------------------------------- End of CHECK ---- \n\n"
 
-	touch build-stamp
+	touch $@
 
 # CLEAN
 
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp 
+	rm -f config-stamp build-stamp 
 
 #ifeq (Makefile,$(wildcard Makefile))
 #	[ ! -f Makefile ] || $(MAKE) maintainer-clean
@@ -112,7 +115,7 @@
 	rm $(wildcard ${AUTO_JUNK})
 endif
 
-	rm -f config.{sub,guess,log,status}
+	rm -f config.sub config.guess config.log config.status
 	rm -f libtool
 	rm -f `find . -name "Makefile"| grep -v "debian/"`
 	rm -f `find . -name "*.o"`
@@ -220,4 +223,4 @@
 
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install get-orig-source
+.PHONY: config build clean binary-indep binary-arch binary install get-orig-source




More information about the pkg-flash-devel mailing list