summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/ChangeLog4
-rwxr-xr-xscripts/buildall.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/scripts/ChangeLog b/scripts/ChangeLog
index d1fde3dd86..dac6c89643 100644
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,7 @@
+2001-04-02 Joel Sherrill <joel@OARcorp.com>
+
+ * buildall.in: Correct logic for detecting 0 RTEMS RPMS installed.
+
2001-03-29 Joel Sherrill <joel@OARcorp.com>
* .cvsignore: Added mkgcc3newlib.
diff --git a/scripts/buildall.in b/scripts/buildall.in
index c46dc34d1b..111e334fad 100755
--- a/scripts/buildall.in
+++ b/scripts/buildall.in
@@ -95,7 +95,7 @@ if [ ${testing} = yes ] ; then
ECHO=echo
fi
-installed_count=`rpm -q -g rtems | grep -v "does not contain" | wc -l`
+installed_count=`rpm -q -g rtems | grep -v "auto" | grep -v "does not contain" | wc -l`
if [ ${installed_count} -ne 0 ] ; then
echo This script should be run with NO rtems RPMs installed.
echo It appears that the following rtems RPMs are installed: