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 /xsd2c/Makefile.am | |
parent | 24409cb9269eab38d4c48d2732a75b46995629b7 (diff) | |
download | csoap-48789f04e213f0f8309448b03c49e7d2802dd1a4.tar.gz csoap-48789f04e213f0f8309448b03c49e7d2802dd1a4.tar.bz2 |
removed LDFLAGS warnings
Diffstat (limited to 'xsd2c/Makefile.am')
-rwxr-xr-x | xsd2c/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xsd2c/Makefile.am b/xsd2c/Makefile.am index 5b964cc..043c8cd 100755 --- a/xsd2c/Makefile.am +++ b/xsd2c/Makefile.am @@ -1,8 +1,8 @@ bin_PROGRAMS=xsd2c INCLUDES=$(LIBXML_CFLAGS) -LDFLAGS=$(LIBXML_LIBS) +x_LDFLAG=$(LIBXML_LIBS) xsd2c_SOURCES=tr.c Enumeration.c util.c obj.c formatter.c xsd2c.c main.c -xsd2c_LDFLAGS=$(LDFLAGS) +xsd2c_LDFLAGS=$(x_LDFLAG) |