dnl @synopsis AX_APPEND_TO_FILE([FILE],[DATA]) dnl dnl Appends the specified data to the specified file. dnl dnl @category Automake dnl @author Tom Howard dnl @version 2005-01-14 dnl @license AllPermissive AC_DEFUN([AX_APPEND_TO_FILE],[ AC_REQUIRE([AX_FILE_ESCAPES]) printf "$2" >> "$1" ])