# HG changeset patch # User Pascal Bellard # Date 1223626385 0 # Node ID 91a81354feeee856f12c79e3a8c1cff07dc0591b # Parent a412fbf2021893346e8fc4b0b90cf0bd0aa82f26 inkscape: hack compile_rules diff -r a412fbf20218 -r 91a81354feee inkscape/receipt --- a/inkscape/receipt Thu Oct 09 21:05:08 2008 +0000 +++ b/inkscape/receipt Fri Oct 10 08:13:05 2008 +0000 @@ -15,12 +15,16 @@ compile_rules() { cd $src + grep -rl glib/gmessages . | while read file; do + echo "Patching $file..." + sed -i 's|glib/gmessages|glib|' $file + done ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ --disable-lcms \ - $CONFIGURE_ARGS - make + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install }