Skip to content

Commit 30daf37

Browse files
authored
Move gsl-config.bat quoting to right place
1 parent f1e321e commit 30daf37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

patches/gsl-2.6/gsl-config.bat.win-gcc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
@echo off
22
rem simplified replacement for the original shell script
3-
set ROOT=%~dp0
3+
set ROOT="%~dp0"
44

5-
set XCFLAGS=-I"%ROOT%..\include"
6-
set XLIBS1=-L"%ROOT%..\lib" -lgsl -lgslcblas
7-
set XLIBS2=-L"%ROOT%..\lib" -lgsl
5+
set XCFLAGS=-I%ROOT%..\include
6+
set XLIBS1=-L%ROOT%..\lib -lgsl -lgslcblas
7+
set XLIBS2=-L%ROOT%..\lib -lgsl
88
set XVERSION=2.6
99
set XPREFIX=%ROOT%..\
1010

0 commit comments

Comments
 (0)