Skip to content

Commit

Permalink
FIXED LDFLAGS on autoconf
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Lisic authored and Jonathan Lisic committed Mar 28, 2021
1 parent e56900d commit 565dd56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R-package/configure
Original file line number Diff line number Diff line change
Expand Up @@ -1683,7 +1683,7 @@ if test -z "${R_HOME}"; then
fi
CC=`"${R_HOME}/bin/R" CMD config CC`
CXX=`"${R_HOME}/bin/R" CMD config CXX11`
LDFLAGS=`"{R_HOME}/bin/R" CMD config LDFLAGS`
LDFLAGS=`"${R_HOME}/bin/R" CMD config LDFLAGS`

# LightGBM-specific flags
LGB_CPPFLAGS=""
Expand Down
2 changes: 1 addition & 1 deletion R-package/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if test -z "${R_HOME}"; then
fi
CC=`"${R_HOME}/bin/R" CMD config CC`
CXX=`"${R_HOME}/bin/R" CMD config CXX11`
LDFLAGS=`"{R_HOME}/bin/R" CMD config LDFLAGS`
LDFLAGS=`"${R_HOME}/bin/R" CMD config LDFLAGS`

# LightGBM-specific flags
LGB_CPPFLAGS=""
Expand Down

0 comments on commit 565dd56

Please sign in to comment.