Skip to content

Commit

Permalink
Change libs order to avoid picking up system libei
Browse files Browse the repository at this point in the history
  • Loading branch information
zazaho authored and thalesmg committed Jun 7, 2024
1 parent 763bf63 commit 41c8192
Showing 1 changed file with 3 additions and 3 deletions.
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 41c8192

Please sign in to comment.