mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-05 18:30:24 -08:00
Fix Windows scripts (quotes missing)
Signed-off-by: Dmitry Solomennikov <dmitrys99@mail.ru>
This commit is contained in:
parent
cedf45a779
commit
12bf1a5243
2 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue