2016-11-18 22:39:22 +01:00

16 lines
397 B
Plaintext

$NetBSD: patch-configure,v 1.1 2016/01/17 14:27:38 wiz Exp $
Fix unportable test(1) construct.
--- configure.orig 2013-06-14 20:38:14.000000000 +0000
+++ configure
@@ -17868,7 +17868,7 @@ if test "$desktopdir" = yes; then
else
DESKTOP_DATADIR="$datadir"
fi
- if test "$desktopdir" == yes; then
+ if test "$desktopdir" = yes; then
DESKTOP_DATADIR_TRUE=
DESKTOP_DATADIR_FALSE='#'
else