mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-18 16:10:15 -07:00
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:
commit
9f27c69db7
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