From d993cae8461c421c86c451f6db5723d7b4238adb Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sun, 1 Nov 2009 23:30:50 +0100 Subject: [PATCH] helpers/automake.sh: removed, it's unused currently. --HG-- extra : convert_revision : 64994208952d9f6adb45bdb6e0c5fe261fed4e5f --- helpers/automake.sh | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 helpers/automake.sh diff --git a/helpers/automake.sh b/helpers/automake.sh deleted file mode 100644 index aea35ba4238..00000000000 --- a/helpers/automake.sh +++ /dev/null @@ -1,18 +0,0 @@ -# -# This helper runs the GNU autoconf tools and friends for a template. -# Optionally $automake_dir may be specified for a specific directory. -# - -run_automake() -{ - $XBPS_MASTERDIR/bin/aclocal - $XBPS_MASTERDIR/bin/libtoolize --automake - $XBPS_MASTERDIR/bin/automake -a --foreign -i - $XBPS_MASTERDIR/bin/autoconf -} - -if [ -z "$automake_dir" ]; then - cd $wrksrc && run_automake -else - cd $wrksrc/$automake_dir && run_automake -fi