diff options
author | obache <obache@pkgsrc.org> | 2013-02-09 12:57:35 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2013-02-09 12:57:35 +0000 |
commit | bc0f870a7230daa27f6da35ddf18563ca1fad527 (patch) | |
tree | 9d4cb54b6a992fd27051aecb89ed73d6ac6a38a0 /devel/bmake | |
parent | 51ee3fef7cf7ac169ae31d4850e650dfdf63dcc5 (diff) | |
download | pkgsrc-bc0f870a7230daa27f6da35ddf18563ca1fad527.tar.gz |
tell Cygwin to bmake.
Diffstat (limited to 'devel/bmake')
-rwxr-xr-x | devel/bmake/files/machine.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/bmake/files/machine.sh b/devel/bmake/files/machine.sh index 7c42667b0f0..fcb29ffe388 100755 --- a/devel/bmake/files/machine.sh +++ b/devel/bmake/files/machine.sh @@ -2,7 +2,7 @@ # derrived from /etc/rc_d/os.sh # RCSid: -# $Id: machine.sh,v 1.4 2011/06/18 22:39:46 bsiegert Exp $ +# $Id: machine.sh,v 1.5 2013/02/09 12:57:35 obache Exp $ # # @(#) Copyright (c) 1994-2002 Simon J. Gerraty # @@ -81,6 +81,11 @@ Linux) i?86) MACHINE_ARCH=i386;;# does anyone really care about 686 vs 586? esac ;; +CYGWIN_*) + OS=CYGWIN + MACHINE=i386 + MACHINE_ARCH=i386 + ;; esac MACHINE=${MACHINE:-$OS$OSMAJOR} |