configure: Only output the disabled crosstest rule once.

This commit is contained in:
Alexandre Julliard 2010-07-26 20:53:12 +02:00
parent 20f51c29a9
commit a070f9b038
2 changed files with 15 additions and 9 deletions

13
aclocal.m4 vendored
View File

@ -357,10 +357,6 @@ testclean::
.PHONY: $ac_dir/__crosstest__
$ac_dir/__crosstest__: $ac_dir/Makefile __builddeps__ dummy
@cd $ac_dir && \$(MAKE) crosstest"
else
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"crosstest:
@echo \"crosstest is not supported (mingw not installed?)\" && false"
fi])
}
@ -416,7 +412,14 @@ wine_fn_config_symlink ()
@./config.status $ac_link
distclean::
\$(RM) $ac_link"
}])
}
if test "x$CROSSTEST_DISABLE" != x
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"crosstest:
@echo \"crosstest is not supported (mingw not installed?)\" && false"
fi])
dnl **** Define helper function to append a file to a makefile file list ****
dnl

11
configure vendored
View File

@ -14234,10 +14234,6 @@ testclean::
.PHONY: $ac_dir/__crosstest__
$ac_dir/__crosstest__: $ac_dir/Makefile __builddeps__ dummy
@cd $ac_dir && \$(MAKE) crosstest"
else
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"crosstest:
@echo \"crosstest is not supported (mingw not installed?)\" && false"
fi
fi
}
@ -14297,6 +14293,13 @@ wine_fn_config_symlink ()
distclean::
\$(RM) $ac_link"
}
if test "x$CROSSTEST_DISABLE" != x
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"crosstest:
@echo \"crosstest is not supported (mingw not installed?)\" && false"
fi
ac_config_links="$ac_config_links dlls/wineps.drv/generic.ppd:dlls/wineps.drv/generic.ppd"
test "$srcdir" = "." || wine_fn_config_symlink dlls/wineps.drv/generic.ppd
if test "x$enable_fonts" != xno; then