Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6]: src/tools Pull up following revision(s) (requested by tsutsui...



details:   https://anonhg.NetBSD.org/src/rev/5cab08da6a51
branches:  netbsd-6
changeset: 774079:5cab08da6a51
user:      riz <riz%NetBSD.org@localhost>
date:      Wed May 09 15:55:06 2012 +0000

description:
Pull up following revision(s) (requested by tsutsui in ticket #234):
        tools/Makefile.gnuhost: revision 1.38
Replace not only space but also '(' and ')' on generating BUILD_PLATFORM
strings to appease shell's echo.
Cygwin's uname -r returns "1.7.9(0.237/5/3)" etc.

diffstat:

 tools/Makefile.gnuhost |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 29bd59c9e56e -r 5cab08da6a51 tools/Makefile.gnuhost
--- a/tools/Makefile.gnuhost    Wed May 09 15:50:38 2012 +0000
+++ b/tools/Makefile.gnuhost    Wed May 09 15:55:06 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.gnuhost,v 1.37 2012/01/21 22:31:15 christos Exp $
+#      $NetBSD: Makefile.gnuhost,v 1.37.2.1 2012/05/09 15:55:06 riz Exp $
 #
 # Rules used when building a GNU host package.  Expects MODULE to be set.
 #
@@ -97,7 +97,7 @@
 ALL_TARGET?=   all
 INSTALL_TARGET?=install
 
-BUILD_PLATFORM!= uname -srm | tr ' ' '-'
+BUILD_PLATFORM!= uname -srm | tr ' ()' '-'
 CONFIGURE_PLATFORM!= if [ -s .configure_done ]; then cat .configure_done; else echo none; fi
 .if "${BUILD_PLATFORM}" != "${CONFIGURE_PLATFORM}"
 configure_cleanup:



Home | Main Index | Thread Index | Old Index