diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-03-21 09:58:39 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-03-21 09:58:39 +0000 |
commit | 363b6dfbba372c20ac6ad3b6b18dc4340c5ce021 (patch) | |
tree | 207c990a2a8ffd2fe8ad27c744bbb549c12c6279 /configure.in | |
parent | fb3ef97d7cab461edee3fad89c3d7bf563ac89e5 (diff) | |
download | xine-lib-363b6dfbba372c20ac6ad3b6b18dc4340c5ce021.tar.gz xine-lib-363b6dfbba372c20ac6ad3b6b18dc4340c5ce021.tar.bz2 |
Fix depcomp forgetting at 'make dist' stage.
CVS patchset: 1602
CVS date: 2002/03/21 09:58:39
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 21d3e231e..2be9410ec 100644 --- a/configure.in +++ b/configure.in @@ -875,6 +875,13 @@ dnl Check for doxygen (dynamic documentation generator) dnl AC_CHECK_PROG(DOXYGEN, doxygen, doxygen, no) +dnl +dnl It seems automake 1.5 don't take care about this script +dnl +if test ! -z $am_depcomp; then + DEPCOMP="depcomp" +fi +AC_SUBST(DEPCOMP) dnl dnl Output configuration files |