# HG changeset patch # User Pascal Bellard # Date 1223121449 0 # Node ID 0331431853dbae119e5d846f5015b1c2a6b14331 # Parent 7ffdeac145184abe2537de48391e5b9e68a1864c lxpanel: apply patch once diff -r 7ffdeac14518 -r 0331431853db lxpanel/receipt --- a/lxpanel/receipt Sat Oct 04 11:54:45 2008 +0000 +++ b/lxpanel/receipt Sat Oct 04 11:57:29 2008 +0000 @@ -16,13 +16,16 @@ { cd $src # Patch the menu - patch -p0 < ../stuff/ptk-app-menu.patch || exit 1 - patch -p0 < ../stuff/fr.patch || exit 1 + for i in ptk-app-menu.patch fr.patch ; do + [ -f done.$i ] && continue + patch -p0 < ../stuff/$i || exit 1 + touch done.$i + done ./configure \ --prefix=/usr \ --with-plugins=all \ - $CONFIGURE_ARGS - make + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install }