diff options
| author | Simon Tatham <anakin@pobox.com> | 2014-09-24 10:32:49 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2014-09-24 10:32:49 +0000 |
| commit | 539919a45dfb039e61e964c43e3da7d7e64ff444 (patch) | |
| tree | 603638044e69738754a29cd8fd1ff76216b5daf2 /release.sh | |
| parent | aa2709b2fdd600b9300c52eb534d13672a572239 (diff) | |
| download | halibut-539919a45dfb039e61e964c43e3da7d7e64ff444.zip halibut-539919a45dfb039e61e964c43e3da7d7e64ff444.tar.gz halibut-539919a45dfb039e61e964c43e3da7d7e64ff444.tar.bz2 halibut-539919a45dfb039e61e964c43e3da7d7e64ff444.tar.xz | |
Remove the MD5-based manifest file system.
A long time ago, it seemed like a good idea to arrange that binaries
of Halibut would automatically cease to identify themselves as a
particular upstream version number if any changes were made to the
source code, so that if someone made a local tweak and distributed the
result then I wouldn't get blamed for the results. Since then I've
decided the whole idea is more trouble than it's worth, so I'm
retiring it completely.
[originally from svn r10254]
Diffstat (limited to 'release.sh')
| -rwxr-xr-x | release.sh | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -24,13 +24,6 @@ if ! test -d charset; then linkmirror $PWD/../charset reltmp/$RELDIR/charset fi -if test "x${VERSION}y" != "xy"; then - (cd reltmp/$RELDIR; - find . -name '*.[ch]' -exec md5sum {} \; - ) > reltmp/$RELDIR/manifest - echo "-DVERSION=\"${VERSION}\"" > reltmp/$RELDIR/version; -fi - tar chzvoCf reltmp $RELDIR.tar.gz $RELDIR rm -rf reltmp |