pkgsrc/emulators/fuse-emulator/patches/patch-configure
wiz 9e5f9d6fa4 Re-import emulators/fuse as emulators/fuse-emulator to fix PKGNAME conflict
with filesystems/fuse. From Kamil Rytarowski in PR 50662.

Fuse is the Free Unix Spectrum Emulator.
* Working 48K/128K/+2/+2A Speccy emulation, running at true Speccy speed on any
  computer you're likely to try it on.
* Support for loading from .tzx files.
* Sound (on system supporting the Open Sound System or BSD/Solaris).
* Kempston joystick emulation.
* Emulation of the various printers you could attach to the Spectrum.
* Very basic support for RZX files.
2016-01-17 14:27:38 +00:00

15 lines
397 B
Text

$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