r3460 - packages/trunk/openal/debian
Cyril Brulebois
kibi-guest at alioth.debian.org
Wed Jul 25 21:25:29 UTC 2007
Author: kibi-guest
Date: 2007-07-25 21:25:29 +0000 (Wed, 25 Jul 2007)
New Revision: 3460
Modified:
packages/trunk/openal/debian/changelog
packages/trunk/openal/debian/control
packages/trunk/openal/debian/rules
Log:
Fix the binNMU stuff, don't ignore distclean errors
Modified: packages/trunk/openal/debian/changelog
===================================================================
--- packages/trunk/openal/debian/changelog 2007-07-25 21:14:04 UTC (rev 3459)
+++ packages/trunk/openal/debian/changelog 2007-07-25 21:25:29 UTC (rev 3460)
@@ -9,9 +9,11 @@
- undocumented_alext_header.diff:
Undocumented header addition.
* Make the package binNMU safe by replacing `${Source-Version}' with
- `${source:Version}'.
+ `${binary:Version}'.
* Add a lintian override about the package name not matching the SONAME,
this being due to the `a' transition.
+ * Don't ignore `make distclean' (add a condition on the presence of a
+ Makefile, but don't use a dash to ignore the potential errors).
-- Cyril Brulebois <cyril.brulebois at enst-bretagne.fr> Wed, 25 Jul 2007 21:58:22 +0200
Modified: packages/trunk/openal/debian/control
===================================================================
--- packages/trunk/openal/debian/control 2007-07-25 21:14:04 UTC (rev 3459)
+++ packages/trunk/openal/debian/control 2007-07-25 21:25:29 UTC (rev 3460)
@@ -9,7 +9,7 @@
Package: libopenal-dev
Section: libdevel
Architecture: any
-Depends: libopenal0a (= ${source:Version})
+Depends: libopenal0a (= ${binary:Version})
Description: OpenAL is a portable library for 3D spatialized audio
OpenAL, the Open Audio Library, is a joint effort to create an open,
vendor-neutral, cross-platform API for interactive, primarily spatialized
Modified: packages/trunk/openal/debian/rules
===================================================================
--- packages/trunk/openal/debian/rules 2007-07-25 21:14:04 UTC (rev 3459)
+++ packages/trunk/openal/debian/rules 2007-07-25 21:25:29 UTC (rev 3460)
@@ -40,7 +40,7 @@
dh_testdir
dh_testroot
rm -fr build-stamp configure-stamp
- -$(MAKE) distclean
+ [ ! -f Makefile ] || $(MAKE) distclean
dh_clean
QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
More information about the Pkg-games-commits
mailing list