]> git.proxmox.com Git - qemu-server.git/blobdiff - Makefile
buildsys: use gzip -n to disable timestamps
[qemu-server.git] / Makefile
index 6a533612b8dc9d5f88e60c45f7287c93446e7df6..22870619419f5f8d705629cf089feae1a8a503ba 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 VERSION=4.0
 PACKAGE=qemu-server
-PKGREL=104
+PKGREL=108
 
 CFLAGS= -O2 -Werror -Wall -Wtype-limits -Wl,-z,relro 
 
@@ -47,11 +47,11 @@ sparsecp: sparsecp.c utils.c
        gcc ${CFLAGS} -o sparsecp sparsecp.c
 
 qm.bash-completion:
-       perl -I. -T -e "use PVE::CLI::qm; PVE::CLI::qm->generate_bash_completions();" >$@.tmp
+       PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qm; PVE::CLI::qm->generate_bash_completions();" >$@.tmp
        mv $@.tmp $@
 
 qmrestore.bash-completion:
-       perl -I. -T -e "use PVE::CLI::qmrestore; PVE::CLI::qmrestore->generate_bash_completions();" >$@.tmp
+       PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qmrestore; PVE::CLI::qmrestore->generate_bash_completions();" >$@.tmp
        mv $@.tmp $@
 
 PKGSOURCES=qm qm.1 qmrestore qmrestore.1 qmextract sparsecp vmtar control qm.conf.5 qm.bash-completion qmrestore.bash-completion
@@ -81,27 +81,28 @@ install: ${PKGSOURCES}
        install -D -m 0644 modules-load.conf ${DESTDIR}/etc/modules-load.d/qemu-server.conf
        install -m 0755 qmextract ${DESTDIR}${LIBDIR}
        install -m 0644 qm.1 ${DESTDIR}/${MAN1DIR}
-       gzip -9 ${DESTDIR}/${MAN1DIR}/qm.1
+       gzip -9 -n ${DESTDIR}/${MAN1DIR}/qm.1
        install -m 0644 qmrestore.1 ${DESTDIR}/${MAN1DIR}
-       gzip -9 ${DESTDIR}/${MAN1DIR}/qmrestore.1
+       gzip -9 -n ${DESTDIR}/${MAN1DIR}/qmrestore.1
        install -m 0644 qm.conf.5 ${DESTDIR}/${MAN5DIR}
-       gzip -9 ${DESTDIR}/${MAN5DIR}/qm.conf.5
+       gzip -9 -n ${DESTDIR}/${MAN5DIR}/qm.conf.5
        cd ${DESTDIR}/${MAN5DIR}; ln -s qm.conf.5.gz vm.conf.5.gz
 
 .PHONY: deb
-deb ${DEB}: ${PKGSOURCES}
+deb: ${DEB}
+${DEB}: ${PKGSOURCES}
        rm -f *.deb
        rm -rf build
        mkdir build
        make DESTDIR=${CURDIR}/build install
-       perl -I. ./qm verifyapi
+       PVE_GENERATING_DOCS=1 perl -I. ./qm verifyapi
        install -d -m 0755 build/DEBIAN
        install -m 0644 control build/DEBIAN
        install -m 0644 triggers build/DEBIAN
        echo "/etc/modules-load.d/qemu-server.conf" >>build/DEBIAN/conffiles
        install -D -m 0644 copyright build/${DOCDIR}/${PACKAGE}/copyright
        install -m 0644 changelog.Debian build/${DOCDIR}/${PACKAGE}/
-       gzip -9 build/${DOCDIR}/${PACKAGE}/changelog.Debian
+       gzip -9 -n build/${DOCDIR}/${PACKAGE}/changelog.Debian
        echo "git clone git://git.proxmox.com/git/qemu-server.git\\ngit checkout ${GITVERSION}" > build/${DOCDIR}/${PACKAGE}/SOURCE
        dpkg-deb --build build  
        mv build.deb ${DEB}