mirror of
git://git.proxmox.com/git/pve-common.git
synced 2025-01-20 22:03:33 +03:00
buildsys: use plain cp instead of rsync
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
f0bf7e9d6c
commit
ad3ec2bb7c
9
Makefile
9
Makefile
@ -17,10 +17,11 @@ all:
|
||||
dinstall: deb
|
||||
dpkg -i ${DEB}
|
||||
|
||||
${BUILDDIR}: src debian
|
||||
rm -rf ${BUILDDIR}
|
||||
rsync -a * ${BUILDDIR}
|
||||
echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout $(shell git rev-parse HEAD)" > ${BUILDDIR}/debian/SOURCE
|
||||
${BUILDDIR}: src debian test
|
||||
rm -rf ${BUILDDIR} ${BUILDDIR}.tmp; mkdir ${BUILDDIR}.tmp
|
||||
cp -a -t ${BUILDDIR}.tmp $^ Makefile
|
||||
echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout $(shell git rev-parse HEAD)" > ${BUILDDIR}.tmp/debian/SOURCE
|
||||
mv ${BUILDDIR}.tmp ${BUILDDIR}
|
||||
|
||||
.PHONY: deb
|
||||
deb: ${DEB}
|
||||
|
Loading…
x
Reference in New Issue
Block a user