summaryrefslogtreecommitdiffstats
path: root/x11-themes
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2011-04-28 15:10:28 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2011-04-28 15:10:28 +0800
commit3600c186e114482436dd3cb888f6d06ad21a2626 (patch)
tree37acc12a8fb556af18f42d4a23c25a1a4f0d82a4 /x11-themes
parent9febd039f3dd57d8ff7de66aea0a3f49ce444f33 (diff)
downloadmarcuscom-ports-3600c186e114482436dd3cb888f6d06ad21a2626.tar
marcuscom-ports-3600c186e114482436dd3cb888f6d06ad21a2626.tar.gz
marcuscom-ports-3600c186e114482436dd3cb888f6d06ad21a2626.tar.bz2
marcuscom-ports-3600c186e114482436dd3cb888f6d06ad21a2626.tar.lz
marcuscom-ports-3600c186e114482436dd3cb888f6d06ad21a2626.tar.xz
marcuscom-ports-3600c186e114482436dd3cb888f6d06ad21a2626.tar.zst
marcuscom-ports-3600c186e114482436dd3cb888f6d06ad21a2626.zip
Add forgotten patch to fix the build.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15929 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-themes')
-rw-r--r--x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh b/x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh
new file mode 100644
index 000000000..bc7e26a01
--- /dev/null
+++ b/x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh
@@ -0,0 +1,11 @@
+--- common/mkiconlinks.sh.orig 2008-09-04 17:15:42.000000000 -0500
++++ common/mkiconlinks.sh 2008-09-04 17:16:31.000000000 -0500
+@@ -16,7 +16,7 @@
+ while [ ! -z "$NEXTLINE" ] ; do
+
+ # Skip lines beginning with '#'
+- if [ ! "${NEXTLINE:0:1}" == '#' ]; then
++ if ! echo ${NEXTLINE} | grep -q "^#" ; then
+ #Extract first field, minus its trailing colon
+ ORIG_FILE=`echo $NEXTLINE | awk '/:/{print $1}' | sed -e 's/://'`
+