From dd65bbc3df07e488c0003090169ab687acd93c95 Mon Sep 17 00:00:00 2001 From: Rongsong Shen Date: Fri, 18 Mar 2022 03:57:07 +0800 Subject: [PATCH] fix error message in build (#518) Co-authored-by: Rongsong Shen --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index db14506..7673fac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -122,7 +122,7 @@ winrelease: roswell/Makefile cp lisp/*.lisp lisp/*.ros lisp/*.el roswell/lisp cd documents;MSYSTEM=MINGW64 make roswell.chm cp documents/roswell.chm roswell/documents - 7z a Roswell-`if [ $$MSYSTEM = 'MINGW64' ];then echo x86_64 ;else echo i686; fi`.zip roswell/ros.exe roswell/lisp/*.* roswell/documents/roswell.chm + 7z a Roswell-`if [ "$$MSYSTEM" = "MINGW64" ];then echo x86_64 ;else echo i686; fi`.zip roswell/ros.exe roswell/lisp/*.* roswell/documents/roswell.chm debian: ros debian/debian.ros all test: @@ -171,7 +171,7 @@ $(PACK).tar.bz2: roswell/Makefile pack: $(PACK).tar.bz2 -WINPACK = roswell_$(VERSION)_$(shell if [ $$MSYSTEM = 'MINGW64' ];then echo amd64 ;else echo i686; fi) +WINPACK = roswell_$(VERSION)_$(shell if [ "$$MSYSTEM" = "MINGW64" ];then echo amd64 ;else echo i686; fi) pack.zip: $(PACK).tar.bz2 7z a $(WINPACK).zip roswell