mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Merge patch from James Bielman fixing self-build under Win32. ... a little bit of an accident ensued; I ran canonicalize-whitespace on .sh files, which seemed to work (except on wc.sh) until it scribbled all over make.sh, confusing the shell interpreter utterly. ... the resulting files have built the system, nevertheless.
8 lines
153 B
Bash
Executable file
8 lines
153 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Create a source distribution. (You should run clean.sh first.)
|
|
|
|
b=${1:?missing base directory name argument}
|
|
tar cf $b-source.tar $b
|