From 637a7ed883026ca75eafac0efb9a9656fcdb2e8b Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Tue, 17 Nov 2020 10:39:44 +0300 Subject: opendoas: bump to 6.8 --- extra/opendoas/build | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'extra/opendoas/build') diff --git a/extra/opendoas/build b/extra/opendoas/build index cb2c20fe..25819524 100755 --- a/extra/opendoas/build +++ b/extra/opendoas/build @@ -1,15 +1,16 @@ #!/bin/sh -e -# shellcheck disable=SC2016 -sed '/chown ${BINOWN}:${BINGRP}/d' bsd.prog.mk > _ -cat _ > bsd.prog.mk; rm -f _ - ./configure \ --enable-static \ --with-timestamp \ --without-pam make -make DESTDIR="$1" install -install -Dm640 doas.conf "$1/etc/doas.conf" +install -Dm4755 doas "$1/usr/bin/doas" +install -Dm640 doas.conf "$1/etc/doas.conf" + +# Install manual pages. +for man in doas.1 doas.conf.5; do + install -Dm644 "$man" "$1/usr/share/man/man${man##*.}/$man" +done -- cgit v1.2.3