Merge branch 'win-scripts-update' into 'develop'

Fix Windows scripts (quotes missing)

See merge request embeddable-common-lisp/ecl!322
This commit is contained in:
Daniel Kochmański 2024-02-03 10:56:33 +00:00
commit 9f27c69db7
2 changed files with 4 additions and 4 deletions

View file

@ -11,10 +11,10 @@ IF NOT "%1" == "" (
goto LOOP
)
IF %CMDTYPE% == --compile (
IF "%CMDTYPE%" == "--compile" (
cl @ECL_CFLAGS@ -I@includedir@ %CMDARGS%
GOTO END
) ELSE IF %CMDTYPE% == --link (
) ELSE IF "%CMDTYPE%" == "--link" (
cl %CMDARGS% @LDFLAGS@ @libdir@/ecl.lib
GOTO END
)

View file

@ -2,10 +2,10 @@
REM Script converted from ecl-config
REM (Michael Goffioul)
IF %1 == --cflags (
IF "%1" == "--cflags" (
ECHO @ECL_CFLAGS@ -I@includedir@
GOTO END
) ELSE IF %1 == --libs (
) ELSE IF "%1" == "--libs" (
ECHO @LDFLAGS@ /link /LIBPATH:@libdir@ ecl.lib @CLIBS@
GOTO END
)