Skip to content

Commit 5fd0df6

Browse files
authored
Merge pull request #58 from mohawk2/patch-1
Move gsl-config.bat quoting to right place
2 parents f1e321e + 659d5f2 commit 5fd0df6

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

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

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

5-
set XCFLAGS=-I"%ROOT%..\include"
6-
set XLIBS1=-L"%ROOT%..\lib" -lgsl -lgslcblas
7-
set XLIBS2=-L"%ROOT%..\lib" -lgsl
4+
set XCFLAGS="-I%~dp0%..\include"
5+
set XLIBS1="-L%~dp0%..\lib" -lgsl -lgslcblas
6+
set XLIBS2="-L%~dp0%..\lib" -lgsl
87
set XVERSION=2.6
9-
set XPREFIX=%ROOT%..\
8+
set XPREFIX="%~dp0%..\"
109

1110
for %%p in (%*) do (
1211
if x%%p == x--cflags echo %XCFLAGS%

0 commit comments

Comments
 (0)