Files
2013-09-26 17:14:40 +02:00

23 lines
811 B
Plaintext

$NetBSD: patch-bv,v 1.2 2009/01/31 16:54:31 hira Exp $
--- setup_native/scripts/linuxpatchscript.sh.orig 2009-01-31 21:04:57.000000000 +0900
+++ setup_native/scripts/linuxpatchscript.sh 2009-01-31 21:06:57.000000000 +0900
@@ -26,7 +26,7 @@
echo
read -p "Patching the installation in ${FULLPRODUCTINSTALLLOCATION}. Continue (y/n) ? " -n 1 reply leftover
echo
-[ "$reply" == "y" ] || exit 1
+[ "$reply" = "y" ] || exit 1
echo
echo "About to update the following packages ..."
@@ -50,7 +50,7 @@
# Check, that $RPMLIST does not contain kde integration rpm (then it is already installed)
KDERPMINSTALLED=`grep kde-integration ${RPMLIST}`
- if [ "x$KDERPMINSTALLED" == "x" ]; then
+ if [ "x$KDERPMINSTALLED" = "x" ]; then
# Install the kde integration rpm
RPMLIST="$RPMLIST $KDERPM"
fi