diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2004-12-12 13:51:28 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2004-12-12 13:51:28 +0000 |
commit | dbdcb15d3e50484f1349748fe2cbe102320e032b (patch) | |
tree | 820a358140313eb0ed631522a78f399a21e7a880 /configure.ac | |
parent | 1de00c1f9d0f1eba90be53b8dd9635b79b68dc2a (diff) | |
download | xine-lib-dbdcb15d3e50484f1349748fe2cbe102320e032b.tar.gz xine-lib-dbdcb15d3e50484f1349748fe2cbe102320e032b.tar.bz2 |
Check absolute path in $ac_aux_dir (just reflected from gxine).
Compilation fixes for cross-compiling with MinGW32.
CVS patchset: 7231
CVS date: 2004/12/12 13:51:28
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ce6ee86d1..1e6934173 100644 --- a/configure.ac +++ b/configure.ac @@ -2120,7 +2120,10 @@ dnl --------------------------------------------- AC_SUBST(mkdir_p) if test -n "$ac_aux_dir"; then - MKINSTALLDIRS="$ac_aux_dir/install-sh -d" + case "$ac_aux_dir" in + /*) MKINSTALLDIRS="$ac_aux_dir/install-sh -d" ;; + *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/install-sh -d" ;; + esac else MKINSTALLDIRS="\$(top_srcdir)/install-sh -d" fi |