Skip to content

Commit

Permalink
sbe: Fix build on Fedora33
Browse files Browse the repository at this point in the history
Commit 7965ad6 attempted to fix the SBE build on Fedora 33, but was not
really fixing the issue, which lies with the fact that we're using a
LD_LIBRARY_PATH during build.

Fix that by removing the LD_LIBRARY_PATH, looks like the build is
successful even without it.

Signed-off-by: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com>
  • Loading branch information
Klaus Heinrich Kiwi committed Apr 8, 2021
1 parent 08df8f0 commit 130d044
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions openpower/package/sbe/sbe.mk
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ SBE_INSTALL_IMAGES = YES
SBE_INSTALL_TARGET = NO

define SBE_BUILD_CMDS
SBE_COMMIT_ID=$(SBE_VERSION) $(HOST_MAKE_ENV) $(MAKE) -C $(@D) \
LD_LIBRARY_PATH=$(HOST_DIR)/usr/lib \
SBE_COMMIT_ID=$(SBE_VERSION) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
CROSS_COMPILER_PATH=$(PPE42_GCC_BIN) \
all
endef
Expand Down

0 comments on commit 130d044

Please sign in to comment.