The following commit has been merged in the master branch:
commit a4fd1634d74af18728edd4b0a77d00d56654310a
Author: Stephen Kitt <[email protected]>
Date:   Tue Aug 24 23:00:54 2010 +0200

    Avoid having to call configure before cleaning.

diff --git a/debian/changelog b/debian/changelog
index 76de244..d0b69cd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 stella (3.2-2) UNRELEASED; urgency=low
 
   * Change debian-menus to scan ~/.stella/roms rather than ~/.stella.
+  * Avoid having to run configure when cleaning (thanks to Piotr Ożarowski
+    for suggesting these two changes!).
 
  -- Stephen Kitt <[email protected]>  Tue, 24 Aug 2010 22:54:30 +0200
 
diff --git a/debian/rules b/debian/rules
index 89c7f90..a4ddfcb 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,9 +4,8 @@
        dh $@ --with autotools_dev,quilt
 
 override_dh_auto_clean:
-# We need to configure here to ensure config.mak is generated
-# (the Makefile needs it)
-       ./configure --prefix=/usr
+# Generate the minimal config.mak required for "make distclean"
+       test -f config.mak || echo "RM_REC := rm -f -r" > config.mak
        dh_auto_clean
 
 override_dh_clean:

-- 
Atari 2600 Emulator for SDL & the X Window System

_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

Reply via email to