Skip to content

Commit

Permalink
Use powershell for zip creating
Browse files Browse the repository at this point in the history
  • Loading branch information
norbusan committed Sep 17, 2024
1 parent 54e9a52 commit 8c6b6f9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,13 @@ chaos_root = $(srcdir)
# first target when building windows/binary distribution
make-dist: install-stamp
ifeq ($(enable_windows),yes)
ifeq ($(enable_wine),yes)
# we run under wine, so linux environment has zip
zip -r cafeobj-$(VERSION)$(VMINOR)-sbcl-win32.zip $(cafeobj_bin)
else
# we expect to run in powershell
Compress-Archive $(cafeobj_bin) cafeobj-$(VERSION)$(VMINOR)-sbcl-win32.zip
endif
else ifeq ($(enable_distribution),yes)
bash make-release-tarballs $(VERSION) $(VMINOR) $(lisp)
endif
Expand Down

0 comments on commit 8c6b6f9

Please sign in to comment.