summaryrefslogtreecommitdiff
path: root/meta/packages/quilt/quilt-0.45/aclocal.patch
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-12-31 19:20:24 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-01-02 11:20:55 +0000
commit4bb83f1e22e7164d38c4d2e2d80ea6d971904f23 (patch)
treed9f4cc070dd17cf2a192ef16c7873048b027b4bd /meta/packages/quilt/quilt-0.45/aclocal.patch
parent01e07585adea462539b95873ac16b27879f13196 (diff)
downloadopenembedded-core-4bb83f1e22e7164d38c4d2e2d80ea6d971904f23.tar.gz
openembedded-core-4bb83f1e22e7164d38c4d2e2d80ea6d971904f23.tar.bz2
openembedded-core-4bb83f1e22e7164d38c4d2e2d80ea6d971904f23.tar.xz
openembedded-core-4bb83f1e22e7164d38c4d2e2d80ea6d971904f23.zip
quilt: 0.45 -> 0.47
Diffstat (limited to 'meta/packages/quilt/quilt-0.45/aclocal.patch')
-rw-r--r--meta/packages/quilt/quilt-0.45/aclocal.patch71
1 files changed, 0 insertions, 71 deletions
diff --git a/meta/packages/quilt/quilt-0.45/aclocal.patch b/meta/packages/quilt/quilt-0.45/aclocal.patch
deleted file mode 100644
index 03d99ed78..000000000
--- a/meta/packages/quilt/quilt-0.45/aclocal.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-Add the aclocal.m4 as acinclude.m4
-
-Index: quilt-0.45/acinclude.m4
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ quilt-0.45/acinclude.m4 2006-08-06 23:18:56.000000000 +0200
-@@ -0,0 +1,64 @@
-+dnl Allow configure to specify a specific binary
-+dnl 1: Environment variable
-+dnl 2: binary name
-+dnl 3: optional list of alternative binary names
-+dnl 4: optional list of additional search directories
-+AC_DEFUN([QUILT_COMPAT_PROG_PATH],[
-+ m4_define([internal_$2_cmd],[esyscmd(ls compat/$2.in 2>/dev/null)])
-+
-+ AC_ARG_WITH($2, AC_HELP_STRING(
-+ [--with-$2], [name of the $2 executable to use]
-+ m4_if(internal_$2_cmd,[],[],[ (use --without-$2
-+ to use an internal mechanism)])),
-+ [
-+ if test x"$withval" = xnone; then
-+ AC_MSG_ERROR([Invalid configure argument. use --without-$2])
-+ fi
-+ if test x"$withval" != xno; then
-+ AC_MSG_CHECKING(for $2)
-+ $1="$withval"
-+ if test -e "$$1"; then
-+ if test ! -f "$$1" -a ! -h "$$1" || test ! -x "$$1"; then
-+ AC_MSG_ERROR([$$1 is not an executable file])
-+ fi
-+ fi
-+ AC_MSG_RESULT([$$1])
-+ if test ! -e "$$1"; then
-+ AC_MSG_WARN([$$1 does not exist])
-+ fi
-+ COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+ fi
-+ ],[
-+ m4_if([$3],[],[
-+ AC_PATH_PROG($1,$2,,$PATH:$4)
-+ ],[
-+ AC_PATH_PROGS($1,$3,,$PATH:$4)
-+ if test -n "$$1" -a "`expr "$$1" : '.*/\([[^/]]*\)$'`" != "$2"; then
-+ COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+ fi
-+ ])
-+ m4_if([$4],[],[],[
-+ if test -n "$$1"; then
-+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+ for dir in "$4"; do
-+ if test "`dirname $$1`" = "$dir"; then
-+ COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+ break
-+ fi
-+ done
-+ IFS="$as_save_IFS"
-+ fi
-+ ])
-+ ])
-+ if test -z "$$1"; then
-+ m4_if(internal_$2_cmd,[],[
-+ AC_MSG_ERROR([Please specify the location of $2 with the option '--with-$2'])
-+ ],[
-+ AC_MSG_WARN([Using internal $2 mechanism. Use option '--with-$2' to override])
-+ COMPAT_PROGRAMS="$COMPAT_PROGRAMS $2"
-+ $1=$2
-+ INTERNAL_$1=1
-+ ])
-+ fi
-+ AC_SUBST($1)
-+])