diff options
author | Theodore Ts'o <tytso@mit.edu> | 2004-09-17 19:54:22 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2004-09-17 19:54:22 -0400 |
commit | 56eb4d47492c975b25ab1737a6fffefc80e5c137 (patch) | |
tree | 76c095667092608b70689c5d3294f87a275a87d1 /lib/et | |
parent | 9845cf5dbd4d06ebc1fe0db99078d7a0be641e0a (diff) | |
download | e2fsprogs-56eb4d47492c975b25ab1737a6fffefc80e5c137.tar.gz |
Remove XSI:isms for greater portability. (Addresses
Debian Bug #255589)
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 |