summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorjlam <jlam>2006-07-19 15:01:23 +0000
committerjlam <jlam>2006-07-19 15:01:23 +0000
commit9c2e0a439e24cc7a392772e11eb50014f76f42db (patch)
treeea1fd5fae298984bed81e92f85f89939fdbade19 /bootstrap
parentd39cdc057066bd26978f63d4d490a9d3481e7469 (diff)
downloadpkgsrc-9c2e0a439e24cc7a392772e11eb50014f76f42db.tar.gz
Ensure that "Makefile" and not "makefile" is used when building nawk.
The former contains fixes for the latter to avoid make errors.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/bootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index 990ecd1d208..37374486da5 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# $NetBSD: bootstrap,v 1.67 2006/07/17 14:30:05 jlam Exp $
+# $NetBSD: bootstrap,v 1.68 2006/07/19 15:01:23 jlam Exp $
#
#
# Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved.
@@ -730,7 +730,7 @@ bmake=$prefix/bin/bmake
case "$need_awk" in
yes) echo_msg "Installing awk"
copy_src ../lang/nawk/files awk
- run_cmd "(cd $wrkdir/awk && $bmake)"
+ run_cmd "(cd $wrkdir/awk && $bmake -f Makefile)"
run_cmd "$install_sh -c -o $user -g $group -m 755 $wrkdir/awk/a.out $prefix/bin/nawk"
run_cmd "$install_sh -c -o $user -g $group -m 644 $wrkdir/awk/nawk.1 $mandir/man1/nawk.1"
echo "TOOLS_PLATFORM.awk?= $prefix/bin/nawk" >> ${MKCONF_EXAMPLE}