[Libreoffice-commits] .: sysui/desktop

Petr Mladek pmladek at kemper.freedesktop.org
Fri Apr 13 06:40:13 PDT 2012


 sysui/desktop/share/create_tree.sh |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8b6fade3b1c24f5442d409cc1bb5ccc8899b0cdf
Author: Petr Mladek <pmladek at suse.cz>
Date:   Fri Apr 13 15:37:42 2012 +0200

    find-4.1.20 does not support -regextype option
    
    use -name "*.png" -o -name "*.svg" instead

diff --git a/sysui/desktop/share/create_tree.sh b/sysui/desktop/share/create_tree.sh
index 1776cfd..056728a 100755
--- a/sysui/desktop/share/create_tree.sh
+++ b/sysui/desktop/share/create_tree.sh
@@ -3,7 +3,7 @@ umask 022
 
 if [ "${KDEMAINDIR}" ]; then
   echo "Copying icons..."
-  for i in `cd "${ICON_SOURCE_DIR}"; find ${ICON_THEMES:-hicolor/???x??? hicolor/??x?? hicolor/scalable locolor} -regextype posix-egrep -regex ".*\.(png|svg)"`
+  for i in `cd "${ICON_SOURCE_DIR}"; find ${ICON_THEMES:-hicolor/???x??? hicolor/??x?? hicolor/scalable locolor} -name "*.png" -o -name "*.svg"`
   do
     targetdir=${DESTDIR}/${KDEMAINDIR}/share/icons/`dirname ${i}`
     mkdir -p "${targetdir}"
@@ -22,7 +22,7 @@ fi
 
 if [ "${GNOMEDIR}" ]; then
   echo "Copying GNOME icons..."
-  for i in `cd "${ICON_SOURCE_DIR}/hicolor"; find ??x?? ???x??? scalable -regextype posix-egrep -regex ".*\.(png|svg)"`
+  for i in `cd "${ICON_SOURCE_DIR}/hicolor"; find ??x?? ???x??? scalable -name "*.png" -o -name "*.svg"`
   do
     targetdir=${DESTDIR}/${GNOMEDIR}/share/icons/gnome/`dirname ${i}`
     mkdir -p "${targetdir}"


More information about the Libreoffice-commits mailing list