pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mk Under the new tools framework, we use TOOLS_AWK to ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/704ed7558849
branches:  trunk
changeset: 493678:704ed7558849
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Wed May 11 22:19:00 2005 +0000

description:
Under the new tools framework, we use TOOLS_AWK to represent the awk
program that the software itself uses.  Duplicate that using the old
framework to ease integration.

diffstat:

 mk/bsd.pkg.mk |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r ee06d4f7e0ff -r 704ed7558849 mk/bsd.pkg.mk
--- a/mk/bsd.pkg.mk     Wed May 11 22:17:26 2005 +0000
+++ b/mk/bsd.pkg.mk     Wed May 11 22:19:00 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.pkg.mk,v 1.1638 2005/05/11 22:08:18 jlam Exp $
+#      $NetBSD: bsd.pkg.mk,v 1.1639 2005/05/11 22:19:00 jlam Exp $
 #
 # This file is in the public domain.
 #
@@ -2017,6 +2017,7 @@
 _INSTALL_CMD=  ${INSTALL}
 .else
 _INSTALL_CMD=  `${TYPE} ${INSTALL} | ${AWK} '{ print $$NF }'`
+TOOLS_AWK=     ${AWK}
 .endif
 
 .PHONY: do-configure
@@ -2025,7 +2026,7 @@
 .  if defined(HAS_CONFIGURE)
 .    for DIR in ${CONFIGURE_DIRS}
        ${_PKG_SILENT}${_PKG_DEBUG}${_ULIMIT_CMD}cd ${DIR} && ${SETENV} \
-           AWK="${AWK}" \
+           AWK="${TOOLS_AWK}" \
            INSTALL="${_INSTALL_CMD} -c -o ${BINOWN} -g ${BINGRP}" \
            ac_given_INSTALL="${_INSTALL_CMD} -c -o ${BINOWN} -g ${BINGRP}" \
            INSTALL_DATA="${INSTALL_DATA}"                              \



Home | Main Index | Thread Index | Old Index