Module Name: src
Committed By: apb
Date: Wed Aug 6 12:29:13 UTC 2014
Modified Files:
src: build.sh
Log Message:
When searching for a default MACHINE_ARCH for a given MACHINE,
don't break out of the loop too early.
To generate a diff of this commit:
cvs rdiff -u -r1.289 -r1.290 src/build.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/build.sh
diff -u src/build.sh:1.289 src/build.sh:1.290
--- src/build.sh:1.289 Mon Aug 4 21:56:30 2014
+++ src/build.sh Wed Aug 6 12:29:13 2014
@@ -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}
#