# HG changeset patch # User Christophe Lincoln # Date 1202254616 -3600 # Node ID 455c8f46f7c36bd75de9c8ba4b632bfb436e0563 # Parent f0821ee32fd3d4776f4b3733a5d66790f17e2a96 Dont creat pixmaps dir for each packages... diff -r f0821ee32fd3 -r 455c8f46f7c3 tazwok --- a/tazwok Tue Feb 05 23:23:58 2008 +0100 +++ b/tazwok Wed Feb 06 00:36:56 2008 +0100 @@ -304,13 +304,14 @@ # Pixmaps. Some icons/images can be add trough genpkg_rules and # generic copy can be disable with GENERIC_PIXMAPS="no" in pkg receipt. if [ ! "$GENERIC_PIXMAPS" = "no" ]; then - mkdir -p $fs/usr/share/pixmaps if [ -d "$_pkg/usr/share/pixmaps" ]; then + mkdir -p $fs/usr/share/pixmaps cp -a $_pkg/usr/share/pixmaps/$PACKAGE.* \ $fs/usr/share/pixmaps 2>/dev/null fi # Custom or home made PNG pixmap can be in stuff. if [ -f "stuff/$PACKAGE.png" ]; then + mkdir -p $fs/usr/share/pixmaps cp -a stuff/$PACKAGE.png $fs/usr/share/pixmaps fi fi