From 0f407424b04fea1750ac10a358c1566c0a56ed4f Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Wed, 6 Aug 2008 12:31:47 +0000 Subject: [PATCH] quetoo: uglify recipe a bit more so that it compiles with gcc4.3 and libtool 2.x --- packages/quake/quetoo_0.6.1.bb | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/packages/quake/quetoo_0.6.1.bb b/packages/quake/quetoo_0.6.1.bb index 931b002d1c..33a7075799 100644 --- a/packages/quake/quetoo_0.6.1.bb +++ b/packages/quake/quetoo_0.6.1.bb @@ -8,13 +8,24 @@ inherit autotools pkgconfig EXTRA_OECONF = "\ - --with-sdl \ + --with-games=baseq2 \ + --with-sdl \ --with-zlib \ " do_configure() { - gnu-configize - libtoolize --force + for i in ctf qmass vanctf ; do + mkdir -p ${S}/data/$i/sound + mkdir -p ${S}/data/$i/maps + mkdir -p ${S}/src/$i + touch ${S}/data/$i/Makefile.in + touch ${S}/data/$i/sound/Makefile.in + touch ${S}/data/$i/maps/Makefile.in + touch ${S}/src/$i/Makefile.in + done + + sed -i -e s:-Werror::g ${S}/configure + gnu-configize --force oe_runconf rm config.log } -- 2.39.5