diff options
author | Lukas Gorris <lukas.gorris@gmail.com> | 2009-03-30 21:20:14 +0200 |
---|---|---|
committer | Lukas Gorris <lukas.gorris@gmail.com> | 2009-03-30 21:20:14 +0200 |
commit | a93dfebb9e7a34ffba9b1ae5e8e496dfab4c3c43 (patch) | |
tree | 6c38a4617c92398269e6603a0509fc3006811368 /recipes/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch | |
parent | 4255898da29e7e0c521d064afedbc4075b3e8155 (diff) | |
parent | d7fdcef3d8c8b80926d579c2db179b594429cebe (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
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.patch | 55 |
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 ++ |