aboutsummaryrefslogtreecommitdiff
path: root/devel/xdg-utils
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2009-08-16 03:41:39 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2009-08-16 03:41:39 +0000
commit19738247559c6522a84893e569d0b3d4b6c99aa8 (patch)
treee20878341d8c5c225a01ad70bda395d37d2b2158 /devel/xdg-utils
parent0d4b30067d9ae260255e60b5772376dd8b687833 (diff)
downloadports-19738247559c6522a84893e569d0b3d4b6c99aa8.tar.gz
ports-19738247559c6522a84893e569d0b3d4b6c99aa8.zip
Correct a typo.
Spotted by: amdmi3
Notes
Notes: svn path=/head/; revision=239626
Diffstat (limited to 'devel/xdg-utils')
-rw-r--r--devel/xdg-utils/Makefile2
-rw-r--r--devel/xdg-utils/files/patch-scripts_xdg-open4
2 files changed, 3 insertions, 3 deletions
diff --git a/devel/xdg-utils/Makefile b/devel/xdg-utils/Makefile
index a6da443c46a3..18183aaa1eaa 100644
--- a/devel/xdg-utils/Makefile
+++ b/devel/xdg-utils/Makefile
@@ -8,7 +8,7 @@
PORTNAME= xdg-utils
PORTVERSION= 1.0.2
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= http://portland.freedesktop.org/download/
EXTRACT_SUFX= .tgz
diff --git a/devel/xdg-utils/files/patch-scripts_xdg-open b/devel/xdg-utils/files/patch-scripts_xdg-open
index 08bad76bb859..f747c8a20962 100644
--- a/devel/xdg-utils/files/patch-scripts_xdg-open
+++ b/devel/xdg-utils/files/patch-scripts_xdg-open
@@ -5,8 +5,8 @@
if [ x"$browser" != x"" ]; then
- browser_with_arg=`echo "$browser" | sed s#%s#"$1"#`
-+ browser_with_args=`printf "$browser" "$1" 2>/dev/null`
-+ if [ $? -ne 0 ]; then browser_with_args=$browser;
++ browser_with_arg=`printf "$browser" "$1" 2>/dev/null`
++ if [ $? -ne 0 ]; then browser_with_arg=$browser;
+ fi
if [ x"$browser_with_arg" = x"$browser" ]; then "$browser" "$1";