mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
make.sh --help no longer runs clean.sh
Fixes lp#937001
This commit is contained in:
parent
fe6da9f355
commit
9f53ac7b6e
1
NEWS
1
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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
4
make.sh
4
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue