Commit 0330c307 authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Fix xml rule and compress macros.

parent 476a2c62
......@@ -174,12 +174,12 @@ endef
define COMPRESS_TGZ
rm -f $@.tar.gz || true
tar -cz $@ > $<.tgz || true
tar -cz $@ > $@.tgz || true
endef
define COMPRESS_BZ2
rm -f $@.tar.bz2 || true
tar -cj $@ > $<.bz2 || true
tar -cj $@ > $@.bz2 || true
endef
# usefull macros for rpm building
......@@ -1553,7 +1553,7 @@ ifdef HAVE_WIN32
endif
.libxml2: libxml2
(cd xml; CFLAGS="-DLIBXML_STATIC" $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --with-minimal --with-catalog --with-reader --with-tree --with-push --with-xptr --with-valid --with-writer --with-output --with-xpath --with-xinclude --with-sax1 --without-zlib --without-iconv --without-http --without-ftp && make && make install)
(cd libxml; CFLAGS="-DLIBXML_STATIC" $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --with-minimal --with-catalog --with-reader --with-tree --with-push --with-xptr --with-valid --with-writer --with-output --with-xpath --with-xinclude --with-sax1 --without-zlib --without-iconv --without-http --without-ftp && make && make install)
ifndef HAVE_DARWIN_OS
$(INSTALL_NAME)
endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment