mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
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)
This commit is contained in:
parent
e416d387a4
commit
526d484fb3
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
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)
|
||||
|
||||
2004-02-22 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue