configure: Only output the disabled crosstest rule once.
This commit is contained in:
parent
20f51c29a9
commit
a070f9b038
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue