summaryrefslogtreecommitdiff
path: root/recipes/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch')
-rw-r--r--recipes/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch55
1 files changed, 55 insertions, 0 deletions
diff --git a/recipes/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch b/recipes/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
new file mode 100644
index 0000000000..950e8aabae
--- /dev/null
+++ b/recipes/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
@@ -0,0 +1,55 @@
+2005-05-06 Steven Brown <swbrown@ucsd.edu>
+
+ * autogen.sh: Was missing from dist - add from the Arch repository.
+
+
+diff -Nur libsigcx-old/autogen.sh libsigcx/autogen.sh
+--- libsigcx-old/autogen.sh 1969-12-31 16:00:00.000000000 -0800
++++ libsigcx/autogen.sh 2005-05-06 19:48:39.000000000 -0700
+@@ -0,0 +1,46 @@
++#! /bin/sh
++
++srcdir=`dirname $0`
++test -z "$srcdir" && srcdir=.
++
++PKG_NAME="sigcx"
++
++(test -f "$srcdir/configure.ac" \
++ && test -d "$srcdir/sigcx" \
++ && test -d "$srcdir/sigcx/macros") || {
++ echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
++ echo " top-level $PKG_NAME directory"
++ exit 1
++}
++
++
++echo "Adding libtools."
++libtoolize --automake
++
++echo "Building macros."
++aclocal -I scripts $ACLOCAL_FLAGS
++
++echo "Building config header."
++autoheader
++
++echo "Building makefiles."
++automake --add-missing
++
++echo "Building configure."
++autoconf
++
++rm -f config.cache
++
++if test -z "$AUTOGEN_SUBDIR_MODE"; then
++
++ echo "Running configure."
++ ./configure --enable-maintainer-mode "$@"
++ echo
++ echo 'run "make"'
++ echo
++else
++ echo
++ echo 'run "./configure ; make"'
++ echo
++fi
++