From e28efdc5ce5a247ca07d51970749645273f09910 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Tue, 23 Dec 2014 14:20:38 +0100 Subject: [PATCH] make: let `install' output the plist for us --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 748068b9c..696bf9e72 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,10 @@ umount: umount -f ":${.CURDIR}/src" install: - mkdir -p ${DESTDIR}/usr/local - cp -r ${.CURDIR}/src/* ${DESTDIR}/usr/local + @mkdir -p ${DESTDIR}/usr/local + @cp -r ${.CURDIR}/src/* ${DESTDIR}/usr/local + @(cd ${.CURDIR}/src; find * -type f) | \ + xargs -n1 printf "/usr/local/%s\n" lint: find ${.CURDIR}/src -name "*.class" -print0 | xargs -0 -n1 php -l