diff options
Diffstat (limited to 'lib/et')
-rw-r--r-- | lib/et/ChangeLog | 5 | ||||
-rw-r--r-- | lib/et/compile_et.sh.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog index 0c65ddae..24c854e8 100644 --- a/lib/et/ChangeLog +++ b/lib/et/ChangeLog @@ -1,3 +1,8 @@ +2004-09-17 Theodore Ts'o <tytso@mit.edu> + + * compile_et.sh.in: Remove XSI:isms for greater portability. + (Addresses Debian Bug #255589) + 2004-02-29 Brian Bergstrand <brian@bergstrand.org> * Makefile.in: Use $(BSDLIB_PIC_FLAG) to determine whether to use diff --git a/lib/et/compile_et.sh.in b/lib/et/compile_et.sh.in index 0e7634c7..e41b51b9 100644 --- a/lib/et/compile_et.sh.in +++ b/lib/et/compile_et.sh.in @@ -15,10 +15,10 @@ if test "x$1" = x ; then exit 1 fi -if test ! -f "$DIR/et_h.awk" -o ! -f "$DIR/et_c.awk" ; then +if test ! -f "$DIR/et_h.awk" || test ! -f "$DIR/et_c.awk" ; then DIR="$ET_DIR" # echo "Falling back to $DIR..." - if test ! -f "$DIR/et_h.awk" -o ! -f "$DIR/et_c.awk" ; then + if test ! -f "$DIR/et_h.awk" || test ! -f "$DIR/et_c.awk" ; then echo "compile_et: Couldn't find compile_et's template files." exit 1 fi |