16 lines
434 B
Plaintext
16 lines
434 B
Plaintext
$NetBSD: patch-aa,v 1.2 2016/04/09 10:09:14 richard Exp $
|
|
|
|
use '=' instead of '=='
|
|
|
|
--- hotplug.sh.in.orig 2008-09-07 01:18:04.000000000 +0200
|
|
+++ hotplug.sh.in
|
|
@@ -170,7 +170,7 @@ if [ "x${CVSTAG}" != "x" ]; then
|
|
fi
|
|
fi
|
|
fi
|
|
-if [ "x${EDITMAP}" == "xyes" ]; then
|
|
+if [ "x${EDITMAP}" = "xyes" ]; then
|
|
echo "We need to edit the ${HOTPLUGPATH}/usb.usermap if it exists..."
|
|
if test -f ${HOTPLUGPATH}/usb.usermap
|
|
then
|