* run.test: look in /usr/share/lib/dict/words to find the words
authorMark Eichin <eichin@mit.edu>
Wed, 28 Jun 1995 04:05:49 +0000 (04:05 +0000)
committerMark Eichin <eichin@mit.edu>
Wed, 28 Jun 1995 04:05:49 +0000 (04:05 +0000)
file under SGI Irix 5.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6179 dc483132-0cff-0310-8789-dd5450dbe970

src/util/berk_db/test/ChangeLog
src/util/berk_db/test/run.test

index 791864e460b59c874afbf83b5215d5a97efd58d3..684859fcb049142713562923d3d07ea713a51ca9 100644 (file)
@@ -1,3 +1,7 @@
+Wed Jun 28 00:04:07 1995  Mark Eichin  <eichin@cygnus.com>
+
+       * run.test: look in /usr/share/lib/dict/words to find the words
+       file under SGI Irix 5.
 
 Fri Jun 16 16:57:24 EDT 1995   Paul Park       (pjpark@mit.edu)
        * run.test - Remove argument processing loop and only do the first one
index e8316b8e9e910fa09491192aa3e3f41f416200a8..919d5a0b65adf0a377ff5bee48cac1388f88221a 100644 (file)
@@ -16,7 +16,10 @@ main()
                DICT=/usr/share/dict/words
        elif [ -f /usr/dict/words ]; then
                DICT=/usr/dict/words
-       else
+       elif [ -f /usr/share/lib/dict/words ]; then
+               # SGI Irix 5.x
+               DICT=/usr/share/lib/dict/words
+       else
                echo 'run.test: no dictionary'
                exit 1
        fi