Make shure that all autotools generated install commands specify a

user and a group.
This commit is contained in:
matthieu 2016-09-14 08:31:47 +00:00
parent 237d1b1cf5
commit fe5fda4a31
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
.if exists(Makefile.am)
realinstall:
exec ${MAKE_ENV} ${MAKE} install-strip
exec ${MAKE_ENV} ${MAKE} install-strip \
INSTALL_STRIP_PROGRAM="/usr/bin/install -s -c -o root -g bin"
.endif

View File

@ -1,4 +1,4 @@
# $OpenBSD: config.site,v 1.6 2012/08/05 19:52:22 matthieu Exp $
# $OpenBSD: config.site,v 1.7 2016/09/14 08:31:47 matthieu Exp $
ac_cv_c_compiler_gnu=${ac_cv_c_compiler_gnu=yes}
ac_cv_c_const=${ac_cv_c_const=yes}
ac_cv_cxx_compiler_gnu=${ac_cv_cxx_compiler_gnu=yes}
@ -11,7 +11,7 @@ ac_cv_path_RAWCPP=${ac_cv_path_RAWCPP=/usr/bin/cpp}
ac_cv_path_RSH=${ac_cv_path_RSH=/usr/bin/rsh}
ac_cv_path_SED=${ac_cv_path_SED=/usr/bin/sed}
ac_cv_path_ac_pt_PKG_CONFIG=${ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config}
ac_cv_path_install=${ac_cv_path_install='/usr/bin/install -p'}
ac_cv_path_install=${ac_cv_path_install='/usr/bin/install -p -o root -g bin'}
ac_cv_path_GREP=${ac_cv_path_GREP=/usr/bin/grep}
ac_cv_path_EGREP=${ac_cv_path_EGREP=/usr/bin/egrep}
ac_cv_path_FGREP=${ac_cv_path_EGREP=/usr/bin/fgrep}