diff options
author | Benjamin Otte <otte@gnome.org> | 2004-02-22 15:59:08 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-02-22 15:59:08 +0000 |
commit | 526d484fb3535e76092da27b4c29c1c4a2cb2790 (patch) | |
tree | 4cb1fdec8b80287572871b3dfe80e49f12f76f77 /autogen.sh | |
parent | e416d387a49d28e7866654195e98f96cfb959a9a (diff) | |
download | gst-plugins-bad-526d484fb3535e76092da27b4c29c1c4a2cb2790.tar.gz gst-plugins-bad-526d484fb3535e76092da27b4c29c1c4a2cb2790.tar.bz2 gst-plugins-bad-526d484fb3535e76092da27b4c29c1c4a2cb2790.zip |
autogen.sh: replace test -e with test -x for mkinstalldirs to be more portable.
Original commit message from CVS:
2004-02-22 Benjamin Otte <otte@gnome.org>
reported by: Padraig O'Briain <padraig.obriain@sun.com>
* autogen.sh:
replace test -e with test -x for mkinstalldirs to be more portable.
(fixes #134816)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ toplevel_check $srcfile # autopoint # older autopoint (< 0.12) has a tendency to complain about mkinstalldirs -if test -e mkinstalldirs; then rm mkinstalldirs; fi +if test -x mkinstalldirs; then rm mkinstalldirs; fi # first remove patch if necessary, then run autopoint, then reapply if test -f po/Makefile.in.in; then |