[Pkg-haskell-commits] darcs: haskell-devscripts: Fix "Haskell cleanup fails if optional hlibrary.setup is missing" changing the way the shell conditional is done. Thanks to Jonas Smedegaard <dr at jones.dk>. (Closes: #576447)

Marco Túlio Gontijo e Silva marcot at debian.org
Mon Apr 5 03:12:11 UTC 2010


Mon Apr  5 01:36:37 UTC 2010  Marco T[_\c3_][_\ba_]lio Gontijo e Silva <marcot at debian.org>
  * Fix "Haskell cleanup fails if optional hlibrary.setup is missing" changing the way the shell conditional is done.  Thanks to Jonas Smedegaard <dr at jones.dk>. (Closes: #576447)
  Ignore-this: 7d4cb15ad9b42a12a1261f13bb5678b0

    M ./debian/changelog +8
    M ./hlibrary.mk -1 +1

Mon Apr  5 01:36:37 UTC 2010  Marco Túlio Gontijo e Silva <marcot at debian.org>
  * Fix "Haskell cleanup fails if optional hlibrary.setup is missing" changing the way the shell conditional is done.  Thanks to Jonas Smedegaard <dr at jones.dk>. (Closes: #576447)
  Ignore-this: 7d4cb15ad9b42a12a1261f13bb5678b0
diff -rN -u old-haskell-devscripts/debian/changelog new-haskell-devscripts/debian/changelog
--- old-haskell-devscripts/debian/changelog	2010-04-05 03:12:11.372544431 +0000
+++ new-haskell-devscripts/debian/changelog	2010-04-05 03:12:11.396545684 +0000
@@ -1,3 +1,11 @@
+haskell-devscripts (0.7.7) UNRELEASED; urgency=low
+
+  * Fix "Haskell cleanup fails if optional hlibrary.setup is missing"
+    changing the way the shell conditional is done.  Thanks to Jonas
+    Smedegaard <dr at jones.dk>. (Closes: #576447)
+
+ -- Marco Túlio Gontijo e Silva <marcot at debian.org>  Sun, 04 Apr 2010 22:35:42 -0300
+
 haskell-devscripts (0.7.6) unstable; urgency=low
 
   * Remove Dh_Haskell.pm.
diff -rN -u old-haskell-devscripts/hlibrary.mk new-haskell-devscripts/hlibrary.mk
--- old-haskell-devscripts/hlibrary.mk	2010-04-05 03:12:11.372544431 +0000
+++ new-haskell-devscripts/hlibrary.mk	2010-04-05 03:12:11.376544640 +0000
@@ -62,7 +62,7 @@
 DEB_BUILD_DEPENDENCIES = build-arch
 
 clean::
-	[ -x "$(DEB_SETUP_BIN_NAME)" ] && $(DEB_SETUP_BIN_NAME) clean
+	[ ! -x "$(DEB_SETUP_BIN_NAME)" ] || $(DEB_SETUP_BIN_NAME) clean
 	rm -rf dist dist-ghc6 dist-hugs $(DEB_SETUP_BIN_NAME) Setup.hi Setup.ho Setup.o .*config*
 	rm -f build-ghc6-stamp build-hugs-stamp build-haddock-stamp
 	rm -rf debian/tmp-inst-ghc6





More information about the Pkg-haskell-commits mailing list