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.kas...@proxmox.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 478e610..15ff263 100644
--- a/Makefile
+++ b/Makefile
@@ -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
-- 
2.1.4


_______________________________________________
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to