X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=src%2FPVE%2FAPI2%2FFirewall%2FMakefile;h=e916755adb6af6e28545ceaadbfb3328f61f1280;hb=5d223aa31ddca5b2f33d8d36efed44923dc10ff4;hp=7b2c3452e02cfecb62f5d4602446cef85f8fe0c9;hpb=43be6155b467d6ba1170c0740cbf5eda88c1ab40;p=pve-firewall.git diff --git a/src/PVE/API2/Firewall/Makefile b/src/PVE/API2/Firewall/Makefile index 7b2c345..e916755 100644 --- a/src/PVE/API2/Firewall/Makefile +++ b/src/PVE/API2/Firewall/Makefile @@ -1,6 +1,6 @@ DESTDIR= PREFIX=/usr -PERLDIR=${DESTDIR}/${PREFIX}/share/perl5 +PERLDIR=$(DESTDIR)/$(PREFIX)/share/perl5 LIB_SOURCES= \ Aliases.pm \ @@ -15,8 +15,8 @@ all: .PHONY: install install: - install -d -m 0755 ${PERLDIR}/PVE/API2/Firewall - for i in ${LIB_SOURCES}; do install -D -m 0644 $$i ${PERLDIR}/PVE/API2/Firewall/$$i; done + install -d -m 0755 $(PERLDIR)/PVE/API2/Firewall + for i in $(LIB_SOURCES); do install -D -m 0644 $$i $(PERLDIR)/PVE/API2/Firewall/$$i; done .PHONY: clean