mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
16 lines
397 B
Plaintext
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
|