summaryrefslogtreecommitdiff
path: root/misc/openoffice3/patches/patch-bv
blob: 02ffcc6158e9c276063cb8e8cc45038baa7f1292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$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