Hi, 2014/3/25 Tue 23:35:23 UTC+9 Bram Moolenaar wrote: > Patch 7.4.217 > Problem: When src/auto/configure was updated, "make clean" would run > configure pointlessly. > Solution: Do not run configure for "make clean" and "make distclean" when > the make program supports $MAKECMDGOALS. (Ken Takata) > Files: src/Makefile
Now I think that it's better to skip running configure also for "make autoconf" and "make reconfig". Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
diff --git a/src/Makefile b/src/Makefile --- a/src/Makefile +++ b/src/Makefile @@ -1671,7 +1671,10 @@ ! grep -x -F 'ac_cv_env_CFLAGS_value=$(CFLAGS)' auto/config.cache > /dev/null; then \ rm auto/config.cache; \ fi - if test "X$(MAKECMDGOALS)" != "Xclean" -a "X$(MAKECMDGOALS)" != "Xdistclean"; then \ + if test "X$(MAKECMDGOALS)" != "Xclean" \ + -a "X$(MAKECMDGOALS)" != "Xdistclean" \ + -a "X$(MAKECMDGOALS)" != "Xautoconf" \ + -a "X$(MAKECMDGOALS)" != "Xreconfig"; then \ GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \ CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \ LDFLAGS="$(LDFLAGS)" $(CONF_SHELL) srcdir="$(srcdir)" \
