e168f8e2b7
librsvg is Raph's scalable vector graphics library. It provides support for SVG graphics, and is used by the GNOME desktop. This package provides the librsvg library as well as some addons -- a pixbuf loader and a theme engine -- for the GTK+ toolkit. This package provides the older 2.40.x branch of librsvg that is written in plain C.
15 lines
346 B
Text
15 lines
346 B
Text
$NetBSD: patch-test-driver,v 1.1 2019/05/29 12:34:52 wiz Exp $
|
|
|
|
Fix unportable test(1) operator.
|
|
|
|
--- test-driver.orig 2017-07-20 01:11:47.000000000 +0000
|
|
+++ test-driver
|
|
@@ -59,7 +59,7 @@ enable_hard_errors=yes
|
|
while test $# -gt 1; do
|
|
arg=${1%=*}
|
|
val=${1#*=}
|
|
- if [ $arg == $val ]; then
|
|
+ if [ $arg = $val ]; then
|
|
val=$2
|
|
shift
|
|
fi
|