|
[Sbcl-commits] master: make.sh --help no longer runs clean.sh
From: stassats <stassats@us...> - 2012-12-18 15:05
|
The branch "master" has been updated in SBCL:
via 9f53ac7b6e54d0dfeb558ae8e90bf56f3784aecb (commit)
from fe6da9f355488152649de48885b96205043c0f82 (commit)
- Log -----------------------------------------------------------------
commit 9f53ac7b6e54d0dfeb558ae8e90bf56f3784aecb
Author: Stas Boukarev <stassats@...>
Date: Tue Dec 18 19:04:15 2012 +0400
make.sh --help no longer runs clean.sh
Fixes lp#937001
---
NEWS | 1 +
make-config.sh | 4 ++++
make.sh | 4 ----
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/NEWS b/NEWS
index e4aa65e..13036cc 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,7 @@ changes relative to sbcl-1.1.2:
(lp#727625)
* bug fix: fasls are now once again directly executable (on platforms
supporting shebang lines, with a suitably-installed sbcl).
+ * bug fix: make.sh --help no longer runs clean.sh. (lp#937001)
changes in sbcl-1.1.2 relative to sbcl-1.1.1:
* notice: System requirements for SBCL on Microsoft Windows: Windows NT 5.1
diff --git a/make-config.sh b/make-config.sh
index 1b86204..1a0a547 100644
--- a/make-config.sh
+++ b/make-config.sh
@@ -208,6 +208,10 @@ EOF
exit 1
fi
+# Running make.sh with different options without clean.sh in the middle
+# can break things.
+sh clean.sh
+
mkdir -p output
# Save prefix for make and install.sh.
echo "SBCL_PREFIX='$SBCL_PREFIX'" > output/prefix.def
diff --git a/make.sh b/make.sh
index 77494c6..f10db34 100755
--- a/make.sh
+++ b/make.sh
@@ -20,10 +20,6 @@ export LANG LC_ALL
# provided with absolutely no warranty. See the COPYING and CREDITS
# files for more information.
-# Running make.sh with different options without clean.sh in the middle
-# can break things.
-sh clean.sh
-
# If you're cross-compiling, make-config.sh should "do the right
# thing" when run on the target machine, with the minor caveat that
# any --xc-host parameter should be suitable for the host machine
-----------------------------------------------------------------------
hooks/post-receive
--
SBCL
|
| Thread | Author | Date |
|---|---|---|
| [Sbcl-commits] master: make.sh --help no longer runs clean.sh | stassats <stassats@us...> |