diff options
| author | apb <apb@NetBSD.org> | 2014-08-06 12:29:13 +0000 |
|---|---|---|
| committer | apb <apb@NetBSD.org> | 2014-08-06 12:29:13 +0000 |
| commit | 70df944b5f9c63844705f78a8d29290107d0aff6 (patch) | |
| tree | 6478cec1a3374508581662456b1cfa7cab8079dc /build.sh | |
| parent | a049064e800686221ec901e332c9a7a24c4ec651 (diff) | |
When searching for a default MACHINE_ARCH for a given MACHINE,
don't break out of the loop too early.
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #! /usr/bin/env sh -# $NetBSD: build.sh,v 1.289 2014/08/04 21:56:30 apb Exp $ +# $NetBSD: build.sh,v 1.290 2014/08/06 12:29:13 apb Exp $ # # Copyright (c) 2001-2011 The NetBSD Foundation, Inc. # All rights reserved. @@ -766,7 +766,7 @@ getarch() # remember that there was more than one match. case "$found" in '') found="$line" ;; - *) found="MULTIPLE_MATCHES" ; break ;; + *) found="MULTIPLE_MATCHES" ;; esac ;; esac @@ -1796,7 +1796,7 @@ createmakewrapper() eval cat <<EOF ${makewrapout} #! ${HOST_SH} # Set proper variables to allow easy "make" building of a NetBSD subtree. -# Generated from: \$NetBSD: build.sh,v 1.289 2014/08/04 21:56:30 apb Exp $ +# Generated from: \$NetBSD: build.sh,v 1.290 2014/08/06 12:29:13 apb Exp $ # with these arguments: ${_args} # |
