diff options
-rwxr-xr-x | cvscompile.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cvscompile.sh b/cvscompile.sh index 778d8e398..519ee1102 100755 --- a/cvscompile.sh +++ b/cvscompile.sh @@ -10,9 +10,11 @@ fi if [ `expr $AM` -ge 160 ]; then automake_1_6x=yes fi -if test x"$automake_1_6x" = x"no"; then - echo "To compile xine-lib from CVS requires automake >= 1.6" - exit +if [ -z "$NO_AUTOCONF_CHECK" ]; then + if test x"$automake_1_6x" = x"no"; then + echo "To compile xine-lib from CVS requires automake >= 1.6" + exit + fi fi ## extract autoconf version |