From 5fa84b68ba00474e56c0061878644382b8b48659 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Sun, 22 Jul 2012 20:35:47 +0100 Subject: Real problem is autogen.sh No need for morphology --- autogen.sh | 8 ++++++-- liboil.morph | 9 --------- 2 files changed, 6 insertions(+), 11 deletions(-) delete mode 100644 liboil.morph diff --git a/autogen.sh b/autogen.sh index 60a9966..28e74d2 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,7 +6,11 @@ else confflags="--enable-gtk-doc" fi -autoreconf -i -f && - ./configure --enable-maintainer-mode --disable-static $confflags $@ +set -e + +autoreconf -i -f +if [ -z "$NOCONFIGURE" ]; then + ./configure --enable-maintainer-mode --disable-static $confflags $@ +fi diff --git a/liboil.morph b/liboil.morph deleted file mode 100644 index 1a5775a..0000000 --- a/liboil.morph +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "liboil", - "kind": "chunk", - "build-system": "autotools", - "configure-commands": [ - "NOCONFIGURE=1 ./autogen.sh", - "./configure --prefix=\"$PREFIX\" --disable-gtk-doc" - ] -} -- cgit v1.2.1