aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_tools
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-08 15:20:39 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-08 15:20:39 -0700
commit4912967eabc447c31847566f03c50433015e9e9c (patch)
tree939f1d16354f08da8f11b4489e31b38a57022df9 /build_tools
parent76e1cda495d6e88cea383d387375588cdf9297bc (diff)
Large set of changes related to making fish relocatable, and improving the build and install story.
- etc/config.fish and share/config.fish are now "universal" and no longer reference install paths or need to be touched by autotools. They've been removed from config.fish.in to config.fish. - fish now attempts to determine __fish_datadir and __fish_sysconfdir relative to the path of the fish executable itself (typically by walking up one directory). This means that you can copy the directory hierarchy around and things will still work. The compiled-in paths are used as a backup. - The fish Xcode project now can build fish natively, without needing autotools. - Version bumped to 2.0
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/make_tarball.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/build_tools/make_tarball.sh b/build_tools/make_tarball.sh
index 9b8dd296..c7400292 100755
--- a/build_tools/make_tarball.sh
+++ b/build_tools/make_tarball.sh
@@ -1,9 +1,11 @@
#!/bin/sh
-rm -f ~/fish_built/fishfish.tar.gz
-if git archive --format=tar --prefix=fishfish/ master | gzip - > ~/fish_built/fishfish.tar.gz
+path=~/fish_built/fishfish-2.0.tar.gz
+rm -f "$path"
+if git archive --format=tar --prefix=fishfish/ master | gzip - > "$path"
then
- echo "Tarball written to ~/fish_built/fishfish.tar.gz"
+ echo "Tarball written to $path"
+ openssl sha1 "$path"
else
echo "Tarball could not be written"
fi