diff options
author | snowdrop | 2005-07-21 09:05:51 +0000 |
---|---|---|
committer | snowdrop | 2005-07-21 09:05:51 +0000 |
commit | 48789f04e213f0f8309448b03c49e7d2802dd1a4 (patch) | |
tree | daed2b71b63d8574176cecdac46e8a6ac71f65d6 /wsdl2c | |
parent | 24409cb9269eab38d4c48d2732a75b46995629b7 (diff) | |
download | csoap-48789f04e213f0f8309448b03c49e7d2802dd1a4.tar.gz csoap-48789f04e213f0f8309448b03c49e7d2802dd1a4.tar.bz2 |
removed LDFLAGS warnings
Diffstat (limited to 'wsdl2c')
-rwxr-xr-x | wsdl2c/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wsdl2c/Makefile.am b/wsdl2c/Makefile.am index 6a4518f..db3b340 100755 --- a/wsdl2c/Makefile.am +++ b/wsdl2c/Makefile.am @@ -1,7 +1,7 @@ bin_PROGRAMS=wsdl2c INCLUDES=$(LIBXML_CFLAGS) -I$(top_srcdir) -LDFLAGS=$(LIBXML_LIBS) +wsdl2cl_LDFLAG=$(LIBXML_LIBS) xsd2c_root= $(top_srcdir)/xsd2c @@ -13,5 +13,5 @@ xsd2c_objs=../xsd2c/util.o \ ../xsd2c/Enumeration.o wsdl2c_SOURCES=CallVar.c CallFunc.c CallList.c codewriter.c wsdl2c.c -wsdl2c_LDFLAGS=$(LDFLAGS) $(xsd2c_objs) +wsdl2c_LDFLAGS=$(wsdl2cl_LDFLAG) $(xsd2c_objs) |