summaryrefslogtreecommitdiffstats
path: root/tools-version.sh
diff options
context:
space:
mode:
authorBryce Harrington <bryce@osg.samsung.com>2017-07-22 22:13:22 +0000
committerBryce Harrington <bryce@osg.samsung.com>2017-07-22 22:13:22 +0000
commit18d407885b4aafc883376e56e7c46c5c69fb8a9d (patch)
tree76f5d10ef091938e4a2f57228b1e95d398417511 /tools-version.sh
parentcmake: drop option USES_TERMINAL from 'dist' target (diff)
downloadinkscape-18d407885b4aafc883376e56e7c46c5c69fb8a9d.tar.gz
inkscape-18d407885b4aafc883376e56e7c46c5c69fb8a9d.zip
Drop old autotools leftover scripts
I think these may be obsolete. They've been in the codebase forever, but I don't know what they are used for anymore. I'm guessing they're autotools leftovers.
Diffstat (limited to 'tools-version.sh')
-rwxr-xr-xtools-version.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/tools-version.sh b/tools-version.sh
deleted file mode 100755
index 209b9cf97..000000000
--- a/tools-version.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-# Report the version of distro and tools building inkscape
-#
-# You can get the latest distro command from
-# distro web page: http://distro.pipfield.ca/
-
-# Please add a tool you want to check
-TOOLS="m4 autoconf autoheader automake automake-1.7 automake-1.8 automake-1.9 aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9 intltoolize gettextize "
-ENVPATTERN='PATH\|FLAGS\|LANG'
-
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-echo '============================================================================='
-echo 'When you report a trouble about building BZR version of inkscape, '
-echo 'Please report following information about distro and tools version, too. '
-echo
-(echo '--1. distribution------------------------------------------------------------'
-$srcdir/distro -a
-echo )
-
-(echo '--2. tools-------------------------------------------------------------------'
-for x in $TOOLS; do
- loc=`which $x 2>/dev/null`
- if [ -z "$loc" ]; then
- echo "$x: not found"
- else
- echo -n "$loc: "
- y=`echo $x | cut -f1 -d-`
- $x --version </dev/null | grep $y
- fi
-done
-echo )
-
-(echo '--3. environment variables---------------------------------------------------'
-env | grep -e $ENVPATTERN
-echo )
-echo '============================================================================='