This commit is contained in:
nemo 2019-01-24 23:15:43 +01:00
commit f43fca2d37
1 changed files with 7 additions and 1 deletions

8
debian/rules vendored
View File

@ -1,12 +1,18 @@
#!/usr/bin/make -f #!/usr/bin/make -f
DESTDIR=$$(pwd)/debian/proxmox-routing
%: %:
dh $@ dh $@
override_dh_auto_install: override_dh_auto_install:
$(MAKE) DESTDIR=$$(pwd)/debian/proxmox-routing install $(MAKE) DESTDIR=$(DESTDIR) install
override_dh_auto_build: override_dh_auto_build:
@ @
override_dh_usrlocal: override_dh_usrlocal:
@ @
override_dh_auto_clean:
if [ -d "$(DESTDIR)" ]; then rm -r $(DESTDIR); fi