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 ...@@ -174,12 +174,12 @@ endef
define COMPRESS_TGZ define COMPRESS_TGZ
rm -f $@.tar.gz || true rm -f $@.tar.gz || true
tar -cz $@ > $<.tgz || true tar -cz $@ > $@.tgz || true
endef endef
define COMPRESS_BZ2 define COMPRESS_BZ2
rm -f $@.tar.bz2 || true rm -f $@.tar.bz2 || true
tar -cj $@ > $<.bz2 || true tar -cj $@ > $@.bz2 || true
endef endef
# usefull macros for rpm building # usefull macros for rpm building
...@@ -1553,7 +1553,7 @@ ifdef HAVE_WIN32 ...@@ -1553,7 +1553,7 @@ ifdef HAVE_WIN32
endif endif
.libxml2: libxml2 .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 ifndef HAVE_DARWIN_OS
$(INSTALL_NAME) $(INSTALL_NAME)
endif 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