]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
tests: avoid empty AT_DATA contents, for zsh.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 12 Sep 2010 15:25:59 +0000 (17:25 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 12 Sep 2010 15:30:12 +0000 (17:30 +0200)
* tests/libtoolize.at (libtoolize macro serial update)
(libtoolize config files serial update, LIBTOOLIZE_OPTIONS):
Do not create empty files with AT_DATA, the latter is documented
to require a final newline.  Fixes testsuite failures with zsh
4.3.10.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
tests/libtoolize.at

index 6b76340ffbf22492cec1899d8e94cf5df9fa19b6..3cea4aac23b68186d908ad338399987ed53e8226 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       tests: avoid empty AT_DATA contents, for zsh.
+       * tests/libtoolize.at (libtoolize macro serial update)
+       (libtoolize config files serial update, LIBTOOLIZE_OPTIONS):
+       Do not create empty files with AT_DATA, the latter is documented
+       to require a final newline.  Fixes testsuite failures with zsh
+       4.3.10.
+
 2010-09-12  Charles Wilson  <libtool@cwilson.fastmail.fm>
 
        When assigning $linklib value, honor [-all]-static[-libtool-libs]
index fa229b93282afd132330061d2141e5832157be18..541753b1f1b7623d76329c923a116c9a177e7356 100644 (file)
@@ -155,7 +155,7 @@ LT_AT_CHECK_LIBTOOLIZE([--copy], 0, expout, experr)
 ## Next, a second update attempt with everything now updated. ##
 ## ---------------------------------------------------------- ##
 
-AT_DATA(expout, [[]])
+: >expout
 
 AT_DATA(experr,
 [[libtoolize: `build-aux/ltmain.sh' is newer: use `--force' to overwrite
@@ -187,7 +187,7 @@ LT_AT_CHECK_LIBTOOLIZE([--copy --force], 0, expout)
 ## A final update attempt with everything previously force updated. ##
 ## ---------------------------------------------------------------- ##
 
-AT_DATA(expout, [[]])
+: >expout
 
 LT_AT_CHECK_LIBTOOLIZE([--copy], 0, expout)
 
@@ -232,7 +232,7 @@ LT_AT_CHECK_LIBTOOLIZE([--copy --install], 0, expout, experr)
 ## Next, a second update attempt with everything now updated. ##
 ## ---------------------------------------------------------- ##
 
-AT_DATA(expout, [[]])
+: >expout
 
 AT_DATA(experr,
 [[libtoolize: `build-aux/ltmain.sh' is newer: use `--force' to overwrite
@@ -267,7 +267,7 @@ LT_AT_CHECK_LIBTOOLIZE([--copy --force --install], 0, expout)
 ## A final update attempt with everything previously force updated. ##
 ## ---------------------------------------------------------------- ##
 
-AT_DATA(expout, [[]])
+: >expout
 
 LT_AT_CHECK_LIBTOOLIZE([--copy --install], 0, expout)
 
@@ -978,7 +978,7 @@ LT_AT_CHECK_LIBTOOLIZE([--copy], 0, [ignore], experr)
 LIBTOOLIZE_OPTIONS=--no-warn,--no-such-option
 export LIBTOOLIZE_OPTIONS
 
-AT_DATA(experr, [[]])
+: >experr
 
 LT_AT_CHECK_LIBTOOLIZE([--copy], 0, [ignore], experr)