pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases/unixodbc Properly quote the MAKE_FLAGS.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/26099a67d4ed
branches:  trunk
changeset: 487762:26099a67d4ed
user:      reed <reed%pkgsrc.org@localhost>
date:      Wed Jan 19 19:13:21 2005 +0000

description:
Properly quote the MAKE_FLAGS.

This is from PR #29009 from Masanori Mikawa.
When built when using cpuflags includes, the quoting for AM_MAKEFLAGS
is wrong.

diffstat:

 databases/unixodbc/Makefile.common |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 98877e297a23 -r 26099a67d4ed databases/unixodbc/Makefile.common
--- a/databases/unixodbc/Makefile.common        Wed Jan 19 18:45:33 2005 +0000
+++ b/databases/unixodbc/Makefile.common        Wed Jan 19 19:13:21 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.16 2004/10/15 11:54:10 tv Exp $
+# $NetBSD: Makefile.common,v 1.17 2005/01/19 19:13:21 reed Exp $
 
 DISTNAME=      unixODBC-${ODBC_DIST_VERS}
 CATEGORIES=    databases
@@ -32,7 +32,7 @@
 MAKE_FLAGS+=           LIBLTDL="-lltdl"
 MAKE_FLAGS+=           INCLTDL="-I${BUILDLINK_PREFIX.ltdl}/include"
 MAKE_FLAGS+=           LEXLIB=""
-MAKE_ENV+=             AM_MAKEFLAGS="${MAKE_FLAGS}"
+MAKE_ENV+=             AM_MAKEFLAGS=${MAKE_FLAGS:Q}
 
 UNIXODBC_DRIVERS_DIR=  lib/unixodbc
 



Home | Main Index | Thread Index | Old Index