diff options
author | jkh <jkh@FreeBSD.org> | 1996-06-12 17:29:45 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-06-12 17:29:45 +0000 |
commit | 4c0a0894d83b94eda7553ed2cb571bc104d42272 (patch) | |
tree | 658b793a92fe6c23dc18b17f5905b704057c71c2 | |
parent | 019fedf51406787d3904598e45f5a867d406becb (diff) | |
download | FreeBSD-src-4c0a0894d83b94eda7553ed2cb571bc104d42272.zip FreeBSD-src-4c0a0894d83b94eda7553ed2cb571bc104d42272.tar.gz |
Fix broken sysinstall check.
-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 ed2be2a..a7f2077 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 |