Skip to content

Commit

Permalink
Merge pull request #54 from thalesmg/libei-odbc-fix
Browse files Browse the repository at this point in the history
fix: Change libs order to avoid picking up system libei
  • Loading branch information
thalesmg authored Jun 10, 2024
2 parents 763bf63 + 1db900d commit 4cd8e6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion OTP_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
26.2.5-1
26.2.5-2
6 changes: 3 additions & 3 deletions lib/odbc/c_src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ ODBC_INCLUDE = @ODBC_INCLUDE@
# ----------------------------------------------------
CC = @CC@
CFLAGS = $(TYPEFLAGS) @CFLAGS@ @THR_DEFS@ @DEFS@
EI_LDFLAGS = -L$(EI_ROOT)/obj$(TYPEMARKER)/$(TARGET)
EI_LDFLAGS = -L$(EI_ROOT)/obj$(TYPEMARKER)/$(TARGET) $(EI_LIB)
LD = @LD@
LDFLAGS = $(ODBC_LIB) $(EI_LDFLAGS)
LIBS = @LIBS@ @THR_LIBS@ $(EI_LIB)
LDFLAGS = $(EI_LDFLAGS) $(ODBC_LIB)
LIBS = @LIBS@ @THR_LIBS@
INCLUDES = -I. $(ODBC_INCLUDE) $(EI_INCLUDE)
TARGET_FLAGS = @TARGET_FLAGS@

Expand Down

0 comments on commit 4cd8e6f

Please sign in to comment.