Skip to content

Commit

Permalink
Merge pull request #3297 from Mesbah-Alam/update_libpath
Browse files Browse the repository at this point in the history
Update LIBPATH export and bring $LIBPATH to the front
  • Loading branch information
pshipton committed Oct 16, 2018
2 parents 1e9f12d + f15c13d commit a8d3f96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/TestConfig/openj9Settings.mk
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ else
ifneq (,$(findstring win,$(SPEC)))
TEST_LIB_PATH:=PATH=$(Q)$(TEST_LIB_PATH_VALUE)$(PS)$(PATH)$(Q)
else ifneq (,$(findstring aix,$(SPEC)))
TEST_LIB_PATH:=LIBPATH=$(Q)$(TEST_LIB_PATH_VALUE)$(PS)$(LIBPATH)$(Q)
TEST_LIB_PATH:=LIBPATH=$(Q)$(LIBPATH)$(PS)$(TEST_LIB_PATH_VALUE)$(Q)
else ifneq (,$(findstring zos,$(SPEC)))
TEST_LIB_PATH:=LIBPATH=$(Q)$(TEST_LIB_PATH_VALUE)$(PS)$(LIBPATH)$(Q)
TEST_LIB_PATH:=LIBPATH=$(Q)$(LIBPATH)$(PS)$(TEST_LIB_PATH_VALUE)$(Q)
else
TEST_LIB_PATH:=LD_LIBRARY_PATH=$(Q)$(TEST_LIB_PATH_VALUE)$(PS)$(LD_LIBRARY_PATH)$(Q)
endif
Expand Down

0 comments on commit a8d3f96

Please sign in to comment.