X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=348ad6013c0aef08215294957c1e90042c415e0d;hb=bf744e94f3ae204a7724017d9872caeca383aa2c;hp=8bc99336cef58c6ce8b0214d78be4a09fbd103ae;hpb=df4694f32dee24265b73b0579d1a1907bd8ad4fb;p=qemu-server.git diff --git a/Makefile b/Makefile index 8bc9933..348ad60 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION=5.0 PACKAGE=qemu-server -PKGREL=6 +PKGREL=29 CFLAGS= -O2 -Werror -Wall -Wtype-limits -Wl,-z,relro @@ -20,7 +20,7 @@ export PERLDIR=${PREFIX}/share/perl5 PERLINCDIR=${PERLDIR}/asm-x86_64 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) -GITVERSION:=$(shell cat .git/refs/heads/master) +GITVERSION:=$(shell git rev-parse HEAD) DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb @@ -36,12 +36,6 @@ all: dinstall: deb dpkg -i ${DEB} -vmtar: vmtar.c utils.c - gcc ${CFLAGS} -o vmtar vmtar.c - -sparsecp: sparsecp.c utils.c - gcc ${CFLAGS} -o sparsecp sparsecp.c - qm.bash-completion: PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qm; PVE::CLI::qm->generate_bash_completions();" >$@.tmp mv $@.tmp $@ @@ -50,7 +44,7 @@ qmrestore.bash-completion: 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 qm.conf.5 qm.bash-completion qmrestore.bash-completion +PKGSOURCES=qm qm.1 qmrestore qmrestore.1 qmextract qm.conf.5 qm.bash-completion qmrestore.bash-completion .PHONY: install install: ${PKGSOURCES} @@ -72,17 +66,15 @@ install: ${PKGSOURCES} install -m 0755 pve-bridge ${DESTDIR}${VARLIBDIR}/pve-bridge install -m 0755 pve-bridge-hotplug ${DESTDIR}${VARLIBDIR}/pve-bridge-hotplug install -m 0755 pve-bridgedown ${DESTDIR}${VARLIBDIR}/pve-bridgedown - install -s -m 0755 vmtar ${DESTDIR}${LIBDIR} - install -s -m 0755 sparsecp ${DESTDIR}${LIBDIR} 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 -n ${DESTDIR}/${MAN1DIR}/qm.1 + gzip -9 -n -f ${DESTDIR}/${MAN1DIR}/qm.1 install -m 0644 qmrestore.1 ${DESTDIR}/${MAN1DIR} - gzip -9 -n ${DESTDIR}/${MAN1DIR}/qmrestore.1 + gzip -9 -n -f ${DESTDIR}/${MAN1DIR}/qmrestore.1 install -m 0644 qm.conf.5 ${DESTDIR}/${MAN5DIR} - gzip -9 -n ${DESTDIR}/${MAN5DIR}/qm.conf.5 - cd ${DESTDIR}/${MAN5DIR}; ln -s qm.conf.5.gz vm.conf.5.gz + gzip -9 -n -f ${DESTDIR}/${MAN5DIR}/qm.conf.5 + cd ${DESTDIR}/${MAN5DIR}; ln -s -f qm.conf.5.gz vm.conf.5.gz .PHONY: deb deb: ${DEB} @@ -90,7 +82,7 @@ ${DEB}: rm -rf build rsync -a * build echo "git clone git://git.proxmox.com/git/qemu-server.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE - cd build; dpkg-buildpackage -rfakeroot -b -us -uc + cd build; dpkg-buildpackage -b -us -uc lintian ${DEB} .PHONY: test