[Pkg-voip-commits] r4494 - in /asterisk/trunk/debian: changelog rules

paravoid at alioth.debian.org paravoid at alioth.debian.org
Wed Sep 12 00:48:18 UTC 2007


Author: paravoid
Date: Wed Sep 12 00:48:18 2007
New Revision: 4494

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=4494
Log:
* Don't use MAKEFLAGS as a variable in debian/rules since it has a special
  meaning for make. Reported by Simon Richter.

Modified:
    asterisk/trunk/debian/changelog
    asterisk/trunk/debian/rules

Modified: asterisk/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/changelog?rev=4494&op=diff
==============================================================================
--- asterisk/trunk/debian/changelog (original)
+++ asterisk/trunk/debian/changelog Wed Sep 12 00:48:18 2007
@@ -15,13 +15,15 @@
     virtual package. This also means using the more complete OpenSSL libcurl
     backend instead of the GnuTLS one.
   * Add a versioned >= 1.4 dependency of asterisk in asterisk-h323.
+  * Don't use MAKEFLAGS as a variable in debian/rules since it has a special
+    meaning for make. Reported by Simon Richter.
 
   [ Kilian Krause ]
   * Add backport hook for Sarge. Update Dapper.
   * Update backports scripts for libcurl4*-dev
   * Fix IMAP crash with upstream source snipplet. (Closes: #440187)
 
- -- Faidon Liambotis <paravoid at debian.org>  Tue, 11 Sep 2007 18:19:49 +0300
+ -- Faidon Liambotis <paravoid at debian.org>  Wed, 12 Sep 2007 03:46:25 +0300
 
 asterisk (1:1.4.11~dfsg-1) unstable; urgency=low
 

Modified: asterisk/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/rules?rev=4494&op=diff
==============================================================================
--- asterisk/trunk/debian/rules (original)
+++ asterisk/trunk/debian/rules Wed Sep 12 00:48:18 2007
@@ -16,10 +16,10 @@
 
 export PROC := $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
 
-MAKEFLAGS += OPTIMIZE=-O2 MAKECMDGOALS=dont-optimize
+BUILDFLAGS += OPTIMIZE=-O2 MAKECMDGOALS=dont-optimize
 
 # Force music files selection:
-MAKEFLAGS += MENUSELECT_MOH= \
+BUILDFLAGS += MENUSELECT_MOH= \
   ASTDATADIR=/usr/share/asterisk \
   ASTVARRUNDIR=/var/run/asterisk \
 
@@ -98,10 +98,10 @@
 	dh_testdir
 
 	# Add here command to compile/build the package.
-	$(FETCH_ENV) $(MAKE) $(MAKEFLAGS) || true
+	$(FETCH_ENV) $(MAKE) $(BUILDFLAGS) || true
 
 	# Build a second time to pick up h323 :-(
-	$(FETCH_ENV) $(MAKE) $(MAKEFLAGS)
+	$(FETCH_ENV) $(MAKE) $(BUILDFLAGS)
 
 
 	touch $@




More information about the Pkg-voip-commits mailing list