From: Dan Nicholson Date: Tue, 6 May 2008 18:28:43 +0000 (-0700) Subject: autoconf: Replace the configs/current symlink from config.status X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e14ebbce41c8acee5f77633c6c536d92f84a5c20;p=mesa.git autoconf: Replace the configs/current symlink from config.status Minor tweak so that running config.status will entirely recreate the configure settings by replacing the configs/current symlink. --- diff --git a/configure.ac b/configure.ac index b0f17f9286b..cccf7bd44d3 100644 --- a/configure.ac +++ b/configure.ac @@ -901,13 +901,16 @@ CPPFLAGS="$_SAVE_CPPFLAGS" dnl Substitute the config AC_CONFIG_FILES([configs/autoconf]) -AC_OUTPUT dnl Replace the configs/current symlink +AC_CONFIG_COMMANDS([configs],[ if test -f configs/current || test -L configs/current; then rm -f configs/current fi ln -s autoconf configs/current +]) + +AC_OUTPUT dnl dnl Output some configuration info for the user