[Dh-make-php-commits] r277 - trunk
steinm at alioth.debian.org
steinm at alioth.debian.org
Sat Aug 18 21:27:40 UTC 2007
Author: steinm
Date: 2007-08-18 21:27:40 +0000 (Sat, 18 Aug 2007)
New Revision: 277
Modified:
trunk/dh-make-pecl
Log:
- call /usr/bin/pecl instead of just pecl to make sure no other
version of pecl is used
Modified: trunk/dh-make-pecl
===================================================================
--- trunk/dh-make-pecl 2007-08-18 20:45:46 UTC (rev 276)
+++ trunk/dh-make-pecl 2007-08-18 21:27:40 UTC (rev 277)
@@ -9,7 +9,7 @@
# at http://www.gnu.org/.
PROGNAME=dh-make-pecl
-PROGVERSION=0.2.4
+PROGVERSION=0.2.5
PREFIX=/usr
DEBPACKAGEPREFIX=php
@@ -121,7 +121,7 @@
if [ -f ${PECLPACKAGENAME} ]; then
tar xzf ${PECLPACKAGENAME}
else
- if TEMPMSG=$(pecl download ${PECLPACKAGENAME} 2> /dev/null); then
+ if TEMPMSG=$(/usr/bin/pecl download ${PECLPACKAGENAME} 2> /dev/null); then
echo ${TEMPMSG}
PECLPACKAGENAME=$(echo ${TEMPMSG} | awk -F ' ' '{print $2'})
tar xzf ${PECLPACKAGENAME}
More information about the Dh-make-php-commits
mailing list