[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bootstrap on Solaris
From: |
Eric Blake |
Subject: |
bootstrap on Solaris |
Date: |
Tue, 16 Sep 2008 05:52:31 -0600 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.16) Gecko/20080708 Thunderbird/2.0.0.16 Mnenhy/0.7.5.666 |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
/bin/sh on Solaris doesn't grok the POSIX-mandated ': ${RM=rm -f}'; the
solution is to follow autoconf's advice and quote the space. I'm
committing this on all branches.
- --
Don't work too hard, make some time for fun as well!
Eric Blake address@hidden
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAkjPnf8ACgkQ84KuGfSFAYA+aQCfXUw6/Iki8g0ch8Jv1cjgCgz4
oHIAn2jI9/+73DEirIujtsS5t4vGMwNT
=6A59
-----END PGP SIGNATURE-----
>From ce29ff7a556f2ddd44263caa1123346f7af2d80a Mon Sep 17 00:00:00 2001
From: Eric Blake <address@hidden>
Date: Tue, 16 Sep 2008 05:51:41 -0600
Subject: [PATCH] Fix bootstrap for Solaris /bin/sh.
* bootstrap: Avoid shell quoting pitfall.
Signed-off-by: Eric Blake <address@hidden>
---
ChangeLog | 5 +++++
bootstrap | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 7ffd356..258bb77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-09-16 Eric Blake <address@hidden>
+
+ Fix bootstrap for Solaris /bin/sh.
+ * bootstrap: Avoid shell quoting pitfall.
+
2008-09-01 Eric Blake <address@hidden>
Fix building with -DDEBUG=1.
diff --git a/bootstrap b/bootstrap
index 4816972..f3a672e 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# bootstrap (GNU M4) version 2008-08-15
+# bootstrap (GNU M4) version 2008-09-16
# Written by Gary V. Vaughan <address@hidden>
# Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation,
@@ -40,7 +40,7 @@
: ${AUTORECONF=autoreconf}
: ${GNULIB_TOOL=gnulib-tool}
-: ${RM=rm -f}
+: ${RM='rm -f'}
: ${SED=sed}
# Ensure file names are sorted consistently across platforms.
--
1.6.0
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- bootstrap on Solaris,
Eric Blake <=