Accepting request 265570 from home:Zaitor:branches:GNOME:Apps

Rebase patch to match what upstream actually have commited.

OBS-URL: https://build.opensuse.org/request/show/265570
OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/geeqie?expand=0&rev=10
This commit is contained in:
Bjørn Lie 2014-12-17 17:16:24 +00:00 committed by Git OBS Bridge
parent c1316ec390
commit 70d7897a16
2 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,7 @@ diff -Ndur geeqie-1.1/plugins/rotate/geeqie-rotate geeqie-1.1-fix-bashisms/plugi
{
ext=`echo "${1##*.}" |tr "[:upper:]" "[:lower:]"`
- [ "x$ext" == "x" ] && return 1 #no extension
+ [ -n "$ext" ] || return 1 #no extension
+ [ "x$ext" = "x" ] && return 1 #no extension
gq_metadata="$GQ_METADATA_DIR/$1.gq.xmp"
if [ -f "$gq_metadata" ]; then

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Dec 17 13:55:36 UTC 2014 - zaitor@opensuse.org
- Rebase patch to match what upstream actually have commited.
-------------------------------------------------------------------
Tue Dec 16 18:07:00 UTC 2014 - Led <ledest@gmail.com>