[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

X Strike Force X.Org X11 SVN commit: r2535 - branches/7.1/util/xutils-dev/debian



Author: dilinger
Date: 2006-07-23 21:49:04 -0400 (Sun, 23 Jul 2006)
New Revision: 2535

Modified:
   branches/7.1/util/xutils-dev/debian/changelog
   branches/7.1/util/xutils-dev/debian/rules
Log:
  * Test for -obj-$(DEB_BUILD_GNU_TYPE) before creating it during build;
    idempotency fix.


Modified: branches/7.1/util/xutils-dev/debian/changelog
===================================================================
--- branches/7.1/util/xutils-dev/debian/changelog	2006-07-24 01:46:20 UTC (rev 2534)
+++ branches/7.1/util/xutils-dev/debian/changelog	2006-07-24 01:49:04 UTC (rev 2535)
@@ -25,8 +25,10 @@
   [ Andres Salomon ]
   * Update util-macros to 1.1.0.
   * Update 06_linux_manpage_suffixes.diff for utils-macros 1.1.0.
+  * Test for -obj-$(DEB_BUILD_GNU_TYPE) before creating it during build;
+    idempotency fix.
 
- -- Andres Salomon <dilinger@debian.org>  Sun, 23 Jul 2006 21:29:40 -0400
+ -- Andres Salomon <dilinger@debian.org>  Sun, 23 Jul 2006 21:46:31 -0400
 
 xutils-dev (1:1.0.2-3) unstable; urgency=low
 

Modified: branches/7.1/util/xutils-dev/debian/rules
===================================================================
--- branches/7.1/util/xutils-dev/debian/rules	2006-07-24 01:46:20 UTC (rev 2534)
+++ branches/7.1/util/xutils-dev/debian/rules	2006-07-24 01:49:04 UTC (rev 2535)
@@ -40,7 +40,7 @@
 build-stamp:
 	dh_testdir
 	for FILE in "$(SUBDIRS)"; do \
-		mkdir "$$FILE"-obj-$(DEB_BUILD_GNU_TYPE); \
+		test -d "$$FILE"-obj-$(DEB_BUILD_GNU_TYPE) || mkdir "$$FILE"-obj-$(DEB_BUILD_GNU_TYPE); \
 		(cd "$$FILE"-obj-$(DEB_BUILD_GNU_TYPE) && \
 		../"$$FILE"/configure --prefix=/usr --mandir=\$${prefix}/share/man \
 		             --infodir=\$${prefix}/share/info $(confflags) \



Reply to: