diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-12 17:29:45 +0000 | 
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-12 17:29:45 +0000 | 
| commit | a55324b884652cc1d4192377eda18d05da02d7f0 (patch) | |
| tree | 658b793a92fe6c23dc18b17f5905b704057c71c2 | |
| parent | 78dc4171c3f16e8c5d079397ad487b8ffc0fa38f (diff) | |
Notes
| -rw-r--r-- | release/floppies/makecrunch.mk | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/release/floppies/makecrunch.mk b/release/floppies/makecrunch.mk index ed2be2a62445..a7f2077df81e 100644 --- a/release/floppies/makecrunch.mk +++ b/release/floppies/makecrunch.mk @@ -1,7 +1,12 @@ -SYSINSTALL=../../../../release/sysinstall/sysinstall -NOCRYPT?=yes +.if exists(../../../../release/sysinstall/sysinstall) +SYSINSTALL=	../../../../release/sysinstall/sysinstall +.else +SYSINSTALL=	../../../../release/sysinstall/obj/sysinstall +.endif + +NOCRYPT?=	yes  all: ${SYSINSTALL} crunch | 
