aboutsummaryrefslogtreecommitdiff
path: root/m4/macros/save_state.m4
blob: abc7b55fb00ac4b71c7f3f72db418a7ff6707bab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
dnl ######################################################################
dnl AC_SAVE_STATE: save confdefs.h onto dbgcf.h and write $ac_cv_* cache
dnl variables that are known so far.
define(AMU_SAVE_STATE,
dnl AC_MSG_NOTICE(*** SAVING CONFIGURE STATE ***)
if test -f confdefs.h
then
 cp confdefs.h dbgcf.h
fi
[AC_CACHE_SAVE
AC_MSG_NOTICE([*** SAVING CONFIGURE STATE ***])]
)
dnl ======================================================================