Add missing ${DESTDIR} to include the jslint script in the debian package.

Our Makefile was missing the DESTDIR path variable, so /usr/bin/jslint was copied directly from our source dir,
instead of going through the debian packaging step.

Signed-off-by: Emmanuel Kasper <e.kasper@proxmox.com>
This commit is contained in:
Emmanuel Kasper 2015-04-09 14:51:24 +02:00 committed by Dietmar Maurer
parent 0fe26c6257
commit 3949f34e2f

View File

@ -40,7 +40,7 @@ install: rhinoed_jslint.js jslint
mkdir -p ${DESTDIR}/usr/share/${PACKAGE}
install -m 0644 rhinoed_jslint.js ${DESTDIR}/usr/share/${PACKAGE}/rhinoed_jslint.js
mkdir -p ${DESTDIR}/usr/bin
install -m 0755 jslint /usr/bin
install -m 0755 jslint ${DESTDIR}/usr/bin
jslint.js download:
wget -O jslint.js http://jslint.com/jslint.js