diff options
author | asau <asau> | 2014-04-17 18:27:24 +0000 |
---|---|---|
committer | asau <asau> | 2014-04-17 18:27:24 +0000 |
commit | aa119004ce819125172f6f002b06d60f50f6503c (patch) | |
tree | c7496443e2752827fec0ae5d5990cb7fd2f24c06 /bootstrap | |
parent | b466f3c3ca5cc3ffbb3faab92cacad15a9a37be5 (diff) | |
download | pkgsrc-aa119004ce819125172f6f002b06d60f50f6503c.tar.gz |
Follow the conventional path of "configure-make-install"
when bootstrapping bmake.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 0e468ef97d9..5b46604f1ce 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.206 2014/04/17 18:12:47 asau Exp $ +# $NetBSD: bootstrap,v 1.207 2014/04/17 18:27:24 asau Exp $ # # Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org> # All rights reserved. @@ -1075,8 +1075,8 @@ $shprog ./bootstrap.sh)" bootstrap_bmake() { echo_msg "Bootstrapping bmake" copy_src $pkgsrcdir/devel/bmake/files bmake - run_cmd "chmod u+x $wrkdir/bmake/configure" - run_cmd "(cd $wrkdir/bmake && $shprog ./boot-strap $configure_quiet_flags -q -o bootstrap.$opsys --prefix=$wrkdir --sysconfdir=$wrkdir --mksrc none --with-default-sys-path="$wrkdir/share/mk" $bmakexargs)" + run_cmd "(cd $wrkdir/bmake && $shprog configure $configure_quiet_flags --with-default-sys-path=$wrkdir/share/mk --prefix=$wrkdir $bmakexargs)" + run_cmd "(cd $wrkdir/bmake && $shprog make-bootstrap.sh)" run_cmd "$install_sh -c -o $user -g $group -m 755 $wrkdir/bmake/bootstrap.$opsys/bmake $wrkdir/bin/bmake" } bootstrap_bmake |