1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

mkdir -p the BINDIR during beforeinstall, instead of blindly

assuming everyone has already got a /usr/local/libexec.
This commit is contained in:
Joerg Wunsch 1995-03-19 10:12:39 +00:00
parent 19e44216df
commit 66d6fa2f8d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=1146

View File

@ -2,11 +2,11 @@
--- Makefile.44bsd Thu Oct 6 17:18:19 1994
***************
*** 0 ****
--- 1,20 ----
--- 1,21 ----
+ #
+ # @(#)Makefile
+ # Makefile for rpc.pcnfsd for BSD/386 or similar
+ # $Id$
+ # $Id: patch-ab,v 1.1.1.1 1994/10/07 00:23:56 pst Exp $
+ #
+
+ PROG= rpc.pcnfsd
@ -20,6 +20,7 @@
+ LDADD+= -lcrypt
+
+ beforeinstall:
+ -mkdir ${PRDIR}
+ -mkdir -p ${BINDIR}
+ -mkdir -p ${PRDIR}
+
+ .include <bsd.prog.mk>