diff options
-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 |