pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases/php-pdo There's no such thing as :t* in the ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b5345e023ffe
branches:  trunk
changeset: 500555:b5345e023ffe
user:      tv <tv%pkgsrc.org@localhost>
date:      Mon Oct 10 14:12:05 2005 +0000

description:
There's no such thing as :t* in the bootstrap bmake.  Use a tr expression.

diffstat:

 databases/php-pdo/module.mk |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (15 lines):

diff -r 7e8cb032cdfc -r b5345e023ffe databases/php-pdo/module.mk
--- a/databases/php-pdo/module.mk       Mon Oct 10 14:07:38 2005 +0000
+++ b/databases/php-pdo/module.mk       Mon Oct 10 14:12:05 2005 +0000
@@ -1,8 +1,9 @@
-# $NetBSD: module.mk,v 1.2 2005/10/09 13:13:55 jdolecek Exp $
+# $NetBSD: module.mk,v 1.3 2005/10/10 14:12:05 tv Exp $
 
 # Items common for all PDO drivers
 
-MODNAME=               PDO_${PDO_DRIVER:tu}
+PDO_DRIVER_TR=         echo ${PDO_DRIVER:Q} | tr a-z A-Z
+MODNAME=               PDO_${PDO_DRIVER_TR:sh}
 PKGMODNAME=            pdo_${PDO_DRIVER}
 PKGNAME=               php-${PKGMODNAME}-${PHP_BASE_VERS}.${PECL_VERSION}
 PDO_VERSION?=          1.0RC1



Home | Main Index | Thread Index | Old Index