Skip to content

Commit

Permalink
Build in the multiarch directories as well
Browse files Browse the repository at this point in the history
This makes $(private_libdir_rel) = $(build_private_libdir_rel), so that patchelf is no longer required (on Debian, at least)
  • Loading branch information
ginggs committed Sep 16, 2015
1 parent fee7aff commit 5726979
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,10 @@ INSTALL_M := $(JULIAHOME)/contrib/install.sh 755
# This used for debian packaging, to conform to library layout guidelines
ifeq ($(MULTIARCH_INSTALL), 1)
MULTIARCH := $(shell gcc -print-multiarch)
private_libdir := $(prefix)/lib/$(MULTIARCH)/julia
libdir := $(prefix)/lib/$(MULTIARCH)/
libdir = $(prefix)/lib/$(MULTIARCH)
private_libdir = $(prefix)/lib/$(MULTIARCH)/julia
build_libdir = $(build_prefix)/lib/$(MULTIARCH)
build_private_libdir = $(build_prefix)/lib/$(MULTIARCH)/julia
endif
# LLVM Options
Expand Down

0 comments on commit 5726979

Please sign in to comment.