automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] Test `$(var:suf=rpl)' expansion in special automake variable


From: Ralf Wildenhues
Subject: Re: [PATCH] Test `$(var:suf=rpl)' expansion in special automake variables.
Date: Thu, 16 Dec 2010 19:53:55 +0100
User-agent: Mutt/1.5.20 (2010-08-04)

* Stefano Lattarini wrote on Sun, Dec 12, 2010 at 10:48:08PM CET:
> > Test `$(var:suf=rpl)' expansion in special automake variables.
> > 
> > * tests/posixsubst-data.test: New test.
> > * tests/posixsubst-extradist.test: Likewise.
> > * tests/posixsubst-ldadd.test: Likewise.
> > * tests/posixsubst-libraries.test: Likewise.
> > * tests/posixsubst-ltlibraries.test: Likewise.
> > * tests/posixsubst-programs.test: Likewise.
> > * tests/posixsubst-scripts.test: Likewise.
> > * tests/posixsubst-sources.test: Likewise.
> > * tests/posixsubst-tests.test: Likewise.

> I've now merged this patch into master, and pushed.

Let's fix the typos in it.

Cheers,
Ralf

    Fix typos in test comments.
    
    * tests/posixsubst-data.test, tests/posixsubst-extradist.test,
    tests/posixsubst-ldadd.test, tests/posixsubst-libraries.test,
    tests/posixsubst-ltlibraries.test, tests/posixsubst-programs.test,
    tests/posixsubst-scripts.test, tests/posixsubst-sources.test,
    tests/posixsubst-tests.test: Fix typos.

diff --git a/tests/posixsubst-data.test b/tests/posixsubst-data.test
index 13d05b6..f1ffeae 100755
--- a/tests/posixsubst-data.test
+++ b/tests/posixsubst-data.test
@@ -37,7 +37,7 @@ bar.data bazzardoz:
 CLEANFILES = bar.data bazzardoz
 
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 dist_foo_DATA = $(t1:=.txt)
 foo_DATA = $(t2:x=.data)
 nodist_foo_DATA = $(t3:.y=zardoz)
diff --git a/tests/posixsubst-extradist.test b/tests/posixsubst-extradist.test
index 3509575..c3bf970 100755
--- a/tests/posixsubst-extradist.test
+++ b/tests/posixsubst-extradist.test
@@ -30,7 +30,7 @@ t1 = foo1 foo2
 t2 = bar.x
 t3 = baz-y
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 EXTRA_DIST = $(t1:=.c) $(t2:.x=.f) $(t3:-y=ar)
 bazar bar.f:
        : > $@
diff --git a/tests/posixsubst-ldadd.test b/tests/posixsubst-ldadd.test
index d4c5a7e..fa3a12c 100755
--- a/tests/posixsubst-ldadd.test
+++ b/tests/posixsubst-ldadd.test
@@ -38,7 +38,7 @@ zardoz_PROGRAMS = foo bar
 noinst_LIBRARIES = libquux1.a libquux2.a libquux3.a
 
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 LDADD = $(u:.lib=.a)
 bar_LDADD = $(v:=.a) libquux2.a $(w:none=libquux3.a)
 
diff --git a/tests/posixsubst-libraries.test b/tests/posixsubst-libraries.test
index 23e7e78..79b96bc 100755
--- a/tests/posixsubst-libraries.test
+++ b/tests/posixsubst-libraries.test
@@ -33,7 +33,7 @@ foolibs = libfoo1 libfoo2
 barlibs = libbaz
 
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 lib_LIBRARIES = $(foolibs:=.a) $(barlibs:z=r.a)
 
 libbar.c:
diff --git a/tests/posixsubst-ltlibraries.test 
b/tests/posixsubst-ltlibraries.test
index 7af1d93..c482db4 100755
--- a/tests/posixsubst-ltlibraries.test
+++ b/tests/posixsubst-ltlibraries.test
@@ -34,7 +34,7 @@ foolibs = libfoo1 libfoo2
 barlibs = libbaz
 
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 lib_LTLIBRARIES = $(foolibs:=.la) $(barlibs:z=r.la)
 
 libbar.c:
diff --git a/tests/posixsubst-programs.test b/tests/posixsubst-programs.test
index 73e5479..a8471f6 100755
--- a/tests/posixsubst-programs.test
+++ b/tests/posixsubst-programs.test
@@ -31,7 +31,7 @@ t1 = foo1 foo2
 t2 = barx bar2
 
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 bin_PROGRAMS = $(t1:=-p) $(t2:2=y)
 
 installcheck-local:
diff --git a/tests/posixsubst-scripts.test b/tests/posixsubst-scripts.test
index 94b51af..a6f253b 100755
--- a/tests/posixsubst-scripts.test
+++ b/tests/posixsubst-scripts.test
@@ -35,7 +35,7 @@ bar1 bar2 quux.pl:
 CLEANFILES = bar1 bar2 quux.pl
 
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 dist_sbin_SCRIPTS = $(t1:=.sh)
 libexec_SCRIPTS = $(t2:x=)
 nodist_bin_SCRIPTS = $(t3:-baz=x.pl)
diff --git a/tests/posixsubst-sources.test b/tests/posixsubst-sources.test
index bde7b6a..97f4e55 100755
--- a/tests/posixsubst-sources.test
+++ b/tests/posixsubst-sources.test
@@ -34,7 +34,7 @@ BAR = bar__
 BAZ = baz.
 
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 foo_SOURCES = main.c $(FOO:.cxx=.c)
 dist_foo_SOURCES = $(BAR:__=.c)
 nodist_foo_SOURCES = $(BAZ:=c)
diff --git a/tests/posixsubst-tests.test b/tests/posixsubst-tests.test
index 158d0ad..98305ae 100755
--- a/tests/posixsubst-tests.test
+++ b/tests/posixsubst-tests.test
@@ -35,7 +35,7 @@ foo2.test barz:
 CLEANFILES = foo2.test barz # for FreeBSD make
 
 # Try also with `:=', to ensure the parser is not unduly confused
-# into thinking that it's an unportable assignement operator.
+# into thinking that it's an unportable assignment operator.
 TESTS = $(t1:=.test) $(t2:x=y) $(t3:2=z)
 
 EXTRA_DIST = $(TESTS)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]