summaryrefslogtreecommitdiff
path: root/configure
blob: 9a1e936e40ea520631eca9f92b5fb38ebf57c99d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh

set -o errexit
set -o nounset

exec 3>config.mk

case "$( uname )" in
  OpenBSD)
    echo 'BINGRP = bin' 1>&3
    echo 'MANGRP = bin' 1>&3
    ;;
  Linux)
    echo 'BINMODE = 755' 1>&3
    echo 'MANMODE = 644' 1>&3
    echo 'MANDIR = share/man/man' 1>&3
    ;;
esac
Generated by cgit. See skreutz.com for my tech blog and contact information.