diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-03-22 15:07:44 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-03-22 15:07:44 +0000 |
commit | 57971d8942669e4290cc1e24bdbe892780f4120c (patch) | |
tree | fe4356786c6ac478ba989307486e0e64388f89a1 | |
parent | b5b35d7c9a4ba1c2723a3fef51df56c970455087 (diff) | |
download | xine-lib-57971d8942669e4290cc1e24bdbe892780f4120c.tar.gz xine-lib-57971d8942669e4290cc1e24bdbe892780f4120c.tar.bz2 |
Fix a "test: argument expected" error on solaris with /bin/sh
CVS patchset: 1614
CVS date: 2002/03/22 15:07:44
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 2be9410ec..8402387d2 100644 --- a/configure.in +++ b/configure.in @@ -878,7 +878,7 @@ 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 +if test ! -z "$am_depcomp"; then DEPCOMP="depcomp" fi AC_SUBST(DEPCOMP) |