diff options
author | hira <hira@pkgsrc.org> | 2007-10-09 10:04:00 +0000 |
---|---|---|
committer | hira <hira@pkgsrc.org> | 2007-10-09 10:04:00 +0000 |
commit | 1809319eb1d1dee3a265b0da8dfa0e9a8ff2ac26 (patch) | |
tree | e4a95c33407d11ca782098dfe47b2d1c02cd23c8 /misc | |
parent | 582bcd3918d890fabbb429602eb6669a8e30716a (diff) | |
download | pkgsrc-1809319eb1d1dee3a265b0da8dfa0e9a8ff2ac26.tar.gz |
Fix "test ==". Pointed out by tnn@.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/openoffice2/distinfo | 3 | ||||
-rw-r--r-- | misc/openoffice2/patches/patch-cr | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/misc/openoffice2/distinfo b/misc/openoffice2/distinfo index d8f908c2b59..2d180efe389 100644 --- a/misc/openoffice2/distinfo +++ b/misc/openoffice2/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.24 2007/10/06 20:02:21 hira Exp $ +$NetBSD: distinfo,v 1.25 2007/10/09 10:04:00 hira Exp $ SHA1 (openoffice-2.3.0/OOo_2.3.0_src_binfilter.tar.bz2) = a45b356092fc61aba68d0b7536bb3f723cd62937 RMD160 (openoffice-2.3.0/OOo_2.3.0_src_binfilter.tar.bz2) = 441a43c2a2d5418c9d3b55a89790f31598000bde @@ -58,3 +58,4 @@ SHA1 (patch-cj) = 45ff359ec795e5ef5c692e954d88912c74017162 SHA1 (patch-cn) = 67afccde1d7bfa42ec4082067189da23ada97190 SHA1 (patch-cp) = 7c6007d18cc4f1b5d1c8e16c9170ec0e8211a040 SHA1 (patch-cq) = 6691fd7fa330db000ec5a9319bf9030b83aa593d +SHA1 (patch-cr) = 9cf96627d480714d62109bb3a7d67777a1a2b796 diff --git a/misc/openoffice2/patches/patch-cr b/misc/openoffice2/patches/patch-cr new file mode 100644 index 00000000000..81bda971dc6 --- /dev/null +++ b/misc/openoffice2/patches/patch-cr @@ -0,0 +1,13 @@ +$NetBSD: patch-cr,v 1.1 2007/10/09 10:04:00 hira Exp $ + +--- setup_native/scripts/linuxpatchscript.sh.orig 2007-10-09 18:55:08.000000000 +0900 ++++ setup_native/scripts/linuxpatchscript.sh 2007-10-09 18:55:25.000000000 +0900 +@@ -49,7 +49,7 @@ + # Check, that $RPMLIST does not contain search toolbar rpm (then it is already installed) + SEARCHTOOLBARINSTALLED=`grep searchtoolbar ${RPMLIST}` + +- if [ "x$SEARCHTOOLBARINSTALLED" == "x" ]; then ++ if [ "x$SEARCHTOOLBARINSTALLED" = "x" ]; then + # Install the online update rpm + RPMLIST="$RPMLIST $SEARCHTOOLBARRPM" + fi |