aboutsummaryrefslogtreecommitdiff
path: root/makeconf.sh
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-24 17:07:57 +0200
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-24 20:50:44 +0200
commit30ead3a5cf6405dab9d5eeac79ffe6a0e9d0aafd (patch)
tree5bffbe72317aacb3e8d6e4ac3ef4ced1585961fa /makeconf.sh
parent937467b6a06b72ee44709541f71b614ca28fa870 (diff)
Dropped support for building with autotools
It's just too much pain to keep it working.
Diffstat (limited to 'makeconf.sh')
-rwxr-xr-xmakeconf.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/makeconf.sh b/makeconf.sh
deleted file mode 100755
index 3388390..0000000
--- a/makeconf.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /bin/sh
-
-echo "Running libtoolize..."
-libtoolize -c
-
-# We use iconv directly rather than via gettext, so
-# we need to manually copy config.rpath.
-CONFIG_RPATH=/usr/share/gettext/config.rpath
-if ! [ -f $CONFIG_RPATH ]; then
- CONFIG_RPATH=/usr/local/share/gettext/config.rpath
-fi
-if ! [ -f $CONFIG_RPATH ]; then
- if [ -f config.rpath ]; then
- CONFIG_RPATH=
- else
- echo "config.rpath not found! - is gettext installed?" >&2
- exit 1
- fi
-fi
-if ! [ -z "$CONFIG_RPATH" ]; then
- cp "$CONFIG_RPATH" .
-fi
-
-echo "Running autoreconf..."
-autoreconf -i
-