diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-25 23:30:58 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-21 19:34:10 +0200 |
commit | bb895d1df20fd08528a501f898926ec1b06373f2 (patch) | |
tree | 7b3f340010233244a29c4930512e24108a0fce72 | |
parent | 8122cd571da19d44d9de684b853ec925bf07dbab (diff) | |
download | tellico-bb895d1df20fd08528a501f898926ec1b06373f2.tar.gz tellico-bb895d1df20fd08528a501f898926ec1b06373f2.zip |
Fix Makefile.am: ":= -style assignments are not portable" build warning.
(cherry picked from commit 35253fae26b10b187ad257d40cfc3fe02835090a)
-rw-r--r-- | src/cite/ooo/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cite/ooo/Makefile.am b/src/cite/ooo/Makefile.am index ff11fca..f3604de 100644 --- a/src/cite/ooo/Makefile.am +++ b/src/cite/ooo/Makefile.am @@ -37,7 +37,7 @@ CLEANFILES = *~ *.loT clean-local: rm -rf $(UNODIR) $(INCDIR) $(CLEANFILES) -UNOTYPES := \ +UNOTYPES = \ com.sun.star.uno.XComponentContext \ com.sun.star.lang.XMultiServiceFactory \ com.sun.star.lang.XSingleComponentFactory \ |