mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 17:49:22 -04:00
12 lines
400 B
Text
12 lines
400 B
Text
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,
|
|
AC_MSG_NOTICE(*** SAVING CONFIGURE STATE ***)
|
|
if test -f confdefs.h
|
|
then
|
|
cp confdefs.h dbgcf.h
|
|
fi
|
|
[AC_CACHE_SAVE]
|
|
)
|
|
dnl ======================================================================
|