Back to the Main Page.

ax_append_to_file

Download the M4 Source.

Synopsis

AX_APPEND_TO_FILE([FILE],[DATA])

Version

1.1 (2005/01/20)     0.5.65   :   AM Support

Author

Tom Howard <tomhoward@users.sf.net>

Description

Appends the specified data to the specified file.

M4 Source Code
AC_DEFUN([AX_APPEND_TO_FILE],[
AC_REQUIRE([AX_FILE_ESCAPES])
printf "$2" >> "$1"
])