diff options
author | obache <obache> | 2013-02-09 12:45:24 +0000 |
---|---|---|
committer | obache <obache> | 2013-02-09 12:45:24 +0000 |
commit | a99c439573aab6de4f0f00a3227d73f2475d4d9d (patch) | |
tree | dd4de35e92b1ddcd7d282cab56b0c3d1fc1d9e4c /bootstrap | |
parent | d7a985b6b1e49560bd0fa345286950d718a04ad4 (diff) | |
download | pkgsrc-a99c439573aab6de4f0f00a3227d73f2475d4d9d.tar.gz |
Rename objdir for bootstrap bmake, to avoid conflict with system
cygwin/config.h heaer on Cygwin with case-insensitive filesystem.
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 77b7730678d..22ab3304909 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.184 2013/02/09 12:41:43 obache Exp $ +# $NetBSD: bootstrap,v 1.185 2013/02/09 12:45:24 obache Exp $ # # Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org> # All rights reserved. @@ -961,8 +961,8 @@ $shprog ./bootstrap.sh)" bootstrap_bmake() { echo_msg "Bootstrapping bmake" copy_src $pkgsrcdir/devel/bmake/files bmake - run_cmd "(cd $wrkdir/bmake && env $bmakexenv $shprog ./boot-strap $configure_quiet_flags -q -o $opsys --prefix=$wrkdir --sysconfdir=$wrkdir --mksrc none --with-default-sys-path="$wrkdir/share/mk" $bmakexargs)" - run_cmd "$install_sh -c -o $user -g $group -m 755 $wrkdir/bmake/$opsys/bmake $wrkdir/bin/bmake" + run_cmd "(cd $wrkdir/bmake && env $bmakexenv $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 "$install_sh -c -o $user -g $group -m 755 $wrkdir/bmake/bootstrap.$opsys/bmake $wrkdir/bin/bmake" } bootstrap_bmake |