diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2002-04-18 22:12:01 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2002-04-18 22:12:01 +0000 |
commit | fbbd21b2d75835080abc3aa5757a1864f4c24e0f (patch) | |
tree | 770ed0cf24d6818c48a75a7b24906c42522423ad /kerberosV/lib/Makefile.inc | |
parent | 03e7dafb2d9221701d755808f0d34aa5e0c211d7 (diff) |
Install both kerb directories with install -d (suggested by millert@)
Diffstat (limited to 'kerberosV/lib/Makefile.inc')
-rw-r--r-- | kerberosV/lib/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kerberosV/lib/Makefile.inc b/kerberosV/lib/Makefile.inc index ebc94c2153d..0514fd7677c 100644 --- a/kerberosV/lib/Makefile.inc +++ b/kerberosV/lib/Makefile.inc @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.inc,v 1.2 2001/05/25 22:45:56 hin Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2002/04/18 22:12:00 espie Exp $ .if defined(INCLUDE_FILES) INCLUDE_DIR?= ${DESTDIR}/usr/include/kerberosV includes: $(INCLUDE_FILES) - mkdir -p ${INCLUDE_DIR} + ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 ${INCLUDE_DIR} -for i in ${INCLUDE_FILES}; do \ echo "installing `basename $$i` in ${INCLUDE_DIR}" ;\ cmp -s $$i ${INCLUDE_DIR}/`basename $$i` || \ |