Last change
on this file since 869 was
862,
checked in by Peter Johansson, 14 years ago
|
Using YAT_SVN_RELEASE from yat project instead of svn_support.am. The
semantics is more or less preserved. I removed check-news in
AM_INIT_AUTOMAKE because it prevented 'mke maintainer-check' to go
through with a *pre version. The check-news check is included in the
release target and was redundant anyway.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id Date
|
File size:
846 bytes
|
Rev | Line | |
---|
[862] | 1 | # =========================================================================== |
---|
| 2 | # http://autoconf-archive.cryp.to/ax_ac_print_to_file.html |
---|
| 3 | # =========================================================================== |
---|
| 4 | # |
---|
| 5 | # SYNOPSIS |
---|
| 6 | # |
---|
| 7 | # AX_AC_PRINT_TO_FILE([FILE],[DATA]) |
---|
| 8 | # |
---|
| 9 | # DESCRIPTION |
---|
| 10 | # |
---|
| 11 | # Writes the specified data to the specified file when Autoconf is is run. |
---|
| 12 | # If you want to print to a file when configure is run use |
---|
| 13 | # AX_PRINT_TO_FILE instead. |
---|
| 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 |
---|
| 21 | # and this notice are preserved. |
---|
| 22 | |
---|
| 23 | AC_DEFUN([AX_AC_PRINT_TO_FILE],[ |
---|
| 24 | AC_REQUIRE([AX_FILE_ESCAPES]) |
---|
| 25 | m4_esyscmd( |
---|
| 26 | AX_FILE_ESCAPES |
---|
| 27 | [ |
---|
| 28 | printf "$2" > "$1" |
---|
| 29 | ]) |
---|
| 30 | ]) |
---|
Note: See
TracBrowser
for help on using the repository browser.