summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Estrugo <ramiro@src.gnome.org>2001-01-26 15:13:48 +0000
committerRamiro Estrugo <ramiro@src.gnome.org>2001-01-26 15:13:48 +0000
commitd2ffb600bfb375b4f27beb9918357a647dfdeb97 (patch)
treef17a5a7eeb158a39257e6488d032b3665611a852
parent67ce82fdb6b4b2014b6b6208d86c567cbd42996a (diff)
downloadnautilus-d2ffb600bfb375b4f27beb9918357a647dfdeb97.tar.gz
reviewed by: Robin * Slomkowski <rslomkow@eazel.com>
* helper-scripts/nautilus-verify-rpm.sh: Fix bug 4984 - Nautilus doesn't provide debugging information if library damaged or missing. The problem was the helper script that make sure installed nautilus and bonobo rpms are sane was checking for the wrong version of bonobo. 0.26 (pr2) vs 0.33 (pr3).
-rw-r--r--ChangeLog11
-rwxr-xr-xhelper-scripts/nautilus-verify-rpm.sh4
2 files changed, 13 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c3de7d4e8..66a006189 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2001-01-26 Ramiro Estrugo <ramiro@eazel.com>
+
+ reviewed by: Robin * Slomkowski <rslomkow@eazel.com>
+
+ * helper-scripts/nautilus-verify-rpm.sh:
+ Fix bug 4984 - Nautilus doesn't provide debugging information if
+ library damaged or missing. The problem was the helper script
+ that make sure installed nautilus and bonobo rpms are sane was
+ checking for the wrong version of bonobo. 0.26 (pr2) vs 0.33
+ (pr3).
+
2001-01-26 Eskil Olsen <eskil@eazel.com>
reviewed by: Ramiro & Pavel
diff --git a/helper-scripts/nautilus-verify-rpm.sh b/helper-scripts/nautilus-verify-rpm.sh
index 2ed05c249..0dd7a7144 100755
--- a/helper-scripts/nautilus-verify-rpm.sh
+++ b/helper-scripts/nautilus-verify-rpm.sh
@@ -77,11 +77,11 @@ if [ $? -eq 0 ]
then
bonobo_version=`rpm -qi bonobo | grep "Version" | awk '{ print $3; }'`
- if [ "$bonobo_version" != "0.26" ]
+ if [ "$bonobo_version" != "0.33" ]
then
title="Problem Running Nautilus"
- message=`printf "This version of Nautilus requires Bonobo 0.26. This computer has Bonobo version %s installed. There might be a newer version of Nautilus available that will work with this version of Bonobo.
+ message=`printf "This version of Nautilus requires Bonobo 0.33. This computer has Bonobo version %s installed. There might be a newer version of Nautilus available that will work with this version of Bonobo.
Please check our download site at http://www.eazel.com/download" $bonobo_version`