Skip to content

Commit

Permalink
don't use MAKEFILE_JUSTNAME on Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
snmsts committed Oct 25, 2024
1 parent a985f1a commit 3730876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ compile: show
cd sbcl;bash run-sbcl.sh --eval "(progn (print *features*)(terpri)(quit))"
archive:
if [ -n "$$WIX" ] ; then \
VERSION=$(VERSION) ARCH=$(ARCH) OS=$(OS) SUFFIX=$(SUFFIX) make -f $(MAKEFILE_JUSTNAME) windows-archive; \
VERSION=$(VERSION) ARCH=$(ARCH) OS=$(OS) SUFFIX=$(SUFFIX) make windows-archive; \
else \
VERSION=$(VERSION) ARCH=$(ARCH) SUFFIX=$(SUFFIX) make -f $(MAKEFILE_JUSTNAME) unix-archive; \
VERSION=$(VERSION) ARCH=$(ARCH) SUFFIX=$(SUFFIX) make unix-archive; \
fi

unix-archive: show
Expand Down

0 comments on commit 3730876

Please sign in to comment.