diff options
author | rillig <rillig> | 2007-11-20 18:15:23 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-11-20 18:15:23 +0000 |
commit | 4a35954bfa934ee79ae7d8ae839a4174bcabab8a (patch) | |
tree | d393a3d7582475641045941288ba45e60413ab49 /pkgtools | |
parent | 85e7f47cefd9090fd5fecf40604f6c737ccb9c2f (diff) | |
download | pkgsrc-4a35954bfa934ee79ae7d8ae839a4174bcabab8a.tar.gz |
Inform the user when configuring libnbcompat. While here, fixed some
quoting issues. (They never caused anything to fail, but who knows what
will happen in the future?)
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/libnbcompat/inplace.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgtools/libnbcompat/inplace.mk b/pkgtools/libnbcompat/inplace.mk index c84e824d042..50824d2702e 100644 --- a/pkgtools/libnbcompat/inplace.mk +++ b/pkgtools/libnbcompat/inplace.mk @@ -1,4 +1,4 @@ -# $NetBSD: inplace.mk,v 1.5 2007/09/08 21:57:59 jlam Exp $ +# $NetBSD: inplace.mk,v 1.6 2007/11/20 18:15:23 rillig Exp $ # # This Makefile fragment builds a working copy of libnbcompat inside # ${WRKDIR}. @@ -25,10 +25,11 @@ NBCOMPAT_CONFIGURE_ARGS+= --host=${MACHINE_GNU_PLATFORM:Q} pre-configure: libnbcompat-build libnbcompat-build: + @${STEP_MSG} "Configuring and building libnbcompat" ${_PKG_SILENT}${_PKG_DEBUG}${_ULIMIT_CMD} \ cd ${LIBNBCOMPAT_SRCDIR} && ${SETENV} \ - AWK="${AWK}" CC="${CC}" CFLAGS="${CFLAGS:M*}" \ - CPPFLAGS="${CPPFLAGS:M*}" \ + AWK=${AWK:Q} CC=${CC:Q} CFLAGS=${CFLAGS:M*:Q} \ + CPPFLAGS=${CPPFLAGS:M*:Q} \ ${CONFIGURE_ENV:NLIBS=*} ${CONFIG_SHELL} \ ${CONFIGURE_SCRIPT} ${NBCOMPAT_CONFIGURE_ARGS} && \ ${MAKE_PROGRAM} |