find-4.1.20 does not support -regextype option

use -name "*.png" -o -name "*.svg" instead
This commit is contained in:
Petr Mladek
2012-04-13 15:37:42 +02:00
parent 3934efe28c
commit 8b6fade3b1

View File

@@ -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}"