The sqlite3 headers are installed with the build user as owner, but
should be owned by root. Ok?

natano


Index: Makefile
===================================================================
RCS file: /cvs/src/lib/libsqlite3/Makefile,v
retrieving revision 1.15
diff -u -p -r1.15 Makefile
--- Makefile    12 Sep 2015 02:08:34 -0000      1.15
+++ Makefile    11 Sep 2016 11:22:24 -0000
@@ -104,7 +104,8 @@ beforeinstall:
 includes:
        @for i in ${FILES}; do \
            cmp -s ${.CURDIR}/src/$$i ${DESTDIR}/usr/include/$$i || \
-               ${INSTALL} ${INSTALL_COPY} -m 444 ${.CURDIR}/src/$$i 
${DESTDIR}/usr/include/$$i; \
+               ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
+               ${.CURDIR}/src/$$i ${DESTDIR}/usr/include/$$i; \
        done
 
 .PHONY: header

Reply via email to