summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Grasman <kim.grasman@gmail.com>2018-07-29 14:53:34 +0200
committerKim Grasman <kim.grasman@gmail.com>2018-07-29 14:53:34 +0200
commiteae5e385621e938b4c80c368bacfe570abe995e3 (patch)
tree12f7a4cb69b616a7bff124a9797273c6e2d3751a
parent55bd62083186e90f887c0afe9cb1cef545d30174 (diff)
Remove unused distribution script
I added this five years ago, but I don't think I've run it once. Better to leave this to packagers.
-rwxr-xr-xdist.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/dist.sh b/dist.sh
deleted file mode 100755
index c4a0e1d..0000000
--- a/dist.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-##===--------- dist.sh - package up binary distribution of IWYU -----------===##
-#
-# The LLVM Compiler Infrastructure
-#
-# This file is distributed under the University of Illinois Open Source
-# License. See LICENSE.TXT for details.
-#
-##===----------------------------------------------------------------------===##
-
-set -eu
-
-# Create clean dist directory
-rm -rf dist
-mkdir dist
-
-# Assume that Release+Asserts build exists.
-ln -f ../../../../../build/Release+Asserts/bin/include-what-you-use dist/
-ln -f fix_includes.py dist/
-ln -f README.txt dist/
-ln -f LICENSE.TXT dist/
-
-pushd dist > /dev/null
-
-# Build archive name to the following pattern:
-# include-what-you-use-<ver>-<arch>-<distro>-<release>.tar.gz
-ARCHIVE=include-what-you-use-3.3-$(uname -m)-$(lsb_release -si)-$(lsb_release -sr).tar.gz
-tar -cvzf $ARCHIVE *
-
-popd > /dev/null
-