Last change
on this file since 1511 was
1463,
checked in by Peter Johansson, 9 years ago
|
set svncopyright:ignore property
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id Date
|
File size:
899 bytes
|
Rev | Line | |
---|
[862] | 1 | # =========================================================================== |
---|
[1190] | 2 | # http://www.gnu.org/software/autoconf-archive/ax_ac_print_to_file.html |
---|
[862] | 3 | # =========================================================================== |
---|
| 4 | # |
---|
| 5 | # SYNOPSIS |
---|
| 6 | # |
---|
| 7 | # AX_AC_PRINT_TO_FILE([FILE],[DATA]) |
---|
| 8 | # |
---|
| 9 | # DESCRIPTION |
---|
| 10 | # |
---|
[1395] | 11 | # Writes the specified data to the specified file when Autoconf is run. If |
---|
| 12 | # you want to print to a file when configure is run use AX_PRINT_TO_FILE |
---|
| 13 | # instead. |
---|
[862] | 14 | # |
---|
| 15 | # LICENSE |
---|
| 16 | # |
---|
| 17 | # Copyright (c) 2009 Allan Caffee <allan.caffee@gmail.com> |
---|
| 18 | # |
---|
| 19 | # Copying and distribution of this file, with or without modification, are |
---|
| 20 | # permitted in any medium without royalty provided the copyright notice |
---|
[1190] | 21 | # and this notice are preserved. This file is offered as-is, without any |
---|
| 22 | # warranty. |
---|
[862] | 23 | |
---|
[1395] | 24 | #serial 8 |
---|
[1190] | 25 | |
---|
[862] | 26 | AC_DEFUN([AX_AC_PRINT_TO_FILE],[ |
---|
[1190] | 27 | m4_esyscmd( |
---|
[862] | 28 | AC_REQUIRE([AX_FILE_ESCAPES]) |
---|
| 29 | [ |
---|
| 30 | printf "$2" > "$1" |
---|
| 31 | ]) |
---|
| 32 | ]) |
---|
Note: See
TracBrowser
for help on using the repository browser.