Back to the Main Page.

ax_print_to_file

Download the M4 Source.

Synopsis

AX_PRINT_TO_FILE([FILE],[DATA])

Version

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

Author

Tom Howard <tomhoward@users.sf.net>

Description

Writes the specified data to the specified file.

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