diff options
author | Rod Whitby <rod@whitby.id.au> | 2008-02-07 00:28:46 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2008-02-07 00:28:46 +0000 |
commit | fe97c17e149bcdf3248ca245c9041379c48cece3 (patch) | |
tree | 4776e25e26fd73b57107b76214d0f8e671a17f88 | |
parent | d59865dc36eff66b6271bd97c1e21e75f4161701 (diff) |
mtpaint: The configure script uses bashisms, so execute it using bash
-rw-r--r-- | packages/mtpaint/mtpaint_3.02.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/mtpaint/mtpaint_3.02.bb b/packages/mtpaint/mtpaint_3.02.bb index 5add7e437f..fea8299534 100644 --- a/packages/mtpaint/mtpaint_3.02.bb +++ b/packages/mtpaint/mtpaint_3.02.bb @@ -2,11 +2,12 @@ DESCRIPTION = "mtPaint is a simple painting program" SECTION = "x11/graphics" DEPENDS = "gtk+ jpeg" HOMEPAGE = "http://mtpaint.sf.net" +PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/mtpaint/mtpaint-3.02.tar.bz2" do_configure() { - ./configure gtk2 + /bin/bash ./configure gtk2 cat > _conf.txt <<EOF CC = ${CC} MT_VERSION=mtPaint 3.02 |