summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-09-14 05:11:56 +0000
committerMike Frysinger <vapier@gentoo.org>2005-09-14 05:11:56 +0000
commit872c06a3af1639c0ebcb4df98520279b93f9b7b1 (patch)
treeb0cfde8ef132d6ebf5a019821a6c956eff3e63b3 /sys-devel/libtool/files
parentuse test instead of [ (diff)
downloadhistorical-872c06a3af1639c0ebcb4df98520279b93f9b7b1.tar.gz
historical-872c06a3af1639c0ebcb4df98520279b93f9b7b1.tar.bz2
historical-872c06a3af1639c0ebcb4df98520279b93f9b7b1.zip
no longer used
Diffstat (limited to 'sys-devel/libtool/files')
-rw-r--r--sys-devel/libtool/files/1.4.3/libtool-1.4.3-libtoolize--config-only.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/sys-devel/libtool/files/1.4.3/libtool-1.4.3-libtoolize--config-only.patch b/sys-devel/libtool/files/1.4.3/libtool-1.4.3-libtoolize--config-only.patch
deleted file mode 100644
index 69c4e022e8a0..000000000000
--- a/sys-devel/libtool/files/1.4.3/libtool-1.4.3-libtoolize--config-only.patch
+++ /dev/null
@@ -1,48 +0,0 @@
---- libtool-1.4.3/libtoolize.in.libtoolize--config-only 2002-10-13 12:21:38.000000000 -0400
-+++ libtool-1.4.3/libtoolize.in 2003-07-26 03:23:32.000000000 -0400
-@@ -55,6 +55,7 @@ ltdl=
- ltdl_tar=
- configure_ac=
- status=0
-+config_only=
-
- for arg
- do
-@@ -67,6 +68,7 @@ Prepare a package to use libtool.
-
- --automake work silently, and assume that Automake is in use
- -c, --copy copy files rather than symlinking them
-+ --config-only only update config.* files
- --debug enable verbose shell tracing
- -n, --dry-run print commands rather than running them
- -f, --force replace existing files
-@@ -94,6 +96,10 @@ EOF
- ln_s=
- ;;
-
-+ --config-only)
-+ config_only=yes
-+ ;;
-+
- --debug)
- echo "$progname: enabling shell trace mode"
- set -x
-@@ -151,7 +157,17 @@ if test -z "$files"; then
- echo "$progname: cannot list files in \`$pkgdatadir'" 1>&2
- exit 1
- fi
--files='config.guess config.sub ltmain.sh'
-+files='config.guess config.sub'
-+if test -z "$config_only"; then
-+ files="$files ltmain.sh"
-+fi
-+
-+# Make sure we only update config.{sub,guess} files
-+if test -n "$config_only"; then
-+ automake=yes
-+ ltdl=
-+ ltdl_tar=
-+fi
-
- auxdir=.
- auxdirline=`egrep '^AC_CONFIG_AUX_DIR' $configure_ac 2>/dev/null`