PERFORCE change 78468 for review

Wayne Salamon wsalamon at FreeBSD.org
Sun Jun 12 22:09:13 GMT 2005


http://perforce.freebsd.org/chv.cgi?CH=78468

Change 78468 by wsalamon at rickenbacker on 2005/06/12 22:08:12

	Test for existence of /usr/include/bsm before making it.

Affected files ...

.. //depot/projects/trustedbsd/openbsm/libbsm/Makefile#8 edit

Differences ...

==== //depot/projects/trustedbsd/openbsm/libbsm/Makefile#8 (text+ko) ====

@@ -119,6 +119,9 @@
 	au_token.3 au_to_trailer.3
 
 beforeinstall:
-	mkdir ${INCSDIR}
+	if test -d ${INCSDIR}; then					\
+	else								\
+		mkdir ${INCSDIR};					\
+	fi;
 
 .include <bsd.lib.mk>
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message



More information about the trustedbsd-cvs mailing list