diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-08-17 16:44:10 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-08-17 16:44:10 +0800 |
commit | 8c2108b7e07e0ae733f140336d8af81ef25b3afa (patch) | |
tree | 66daf6024459bd2fb481f7c4988c7f7610038a10 /x11-themes/gnome-themes/files | |
parent | 2b9f5df5d8a10a3d4032f6543cca364c483b565b (diff) | |
download | marcuscom-ports-8c2108b7e07e0ae733f140336d8af81ef25b3afa.tar marcuscom-ports-8c2108b7e07e0ae733f140336d8af81ef25b3afa.tar.gz marcuscom-ports-8c2108b7e07e0ae733f140336d8af81ef25b3afa.tar.bz2 marcuscom-ports-8c2108b7e07e0ae733f140336d8af81ef25b3afa.tar.lz marcuscom-ports-8c2108b7e07e0ae733f140336d8af81ef25b3afa.tar.xz marcuscom-ports-8c2108b7e07e0ae733f140336d8af81ef25b3afa.tar.zst marcuscom-ports-8c2108b7e07e0ae733f140336d8af81ef25b3afa.zip |
Update to 2.31.90.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14416 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-themes/gnome-themes/files')
-rw-r--r-- | x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh | 11 |
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/://'` + |