diff --git a/Makefile b/Makefile index a0bda55be..d7a6747e3 100644 --- a/Makefile +++ b/Makefile @@ -111,8 +111,6 @@ heads_cc := $(CROSS)gcc \ -fdebug-prefix-map=$(pwd)=heads \ -gno-record-gcc-switches \ -D__MUSL__ \ - -I$(INSTALL)/include \ - -L$(INSTALL)/lib \ CROSS_TOOLS_NOCC := \ AR="$(CROSS)ar" \ diff --git a/modules/cryptsetup b/modules/cryptsetup index 8ed526ef6..9b551b005 100644 --- a/modules/cryptsetup +++ b/modules/cryptsetup @@ -20,11 +20,10 @@ cryptsetup_configure := ./configure \ # but after building, replace prefix so that they will be installed # in the correct directory. cryptsetup_target := \ - $(MAKE_JOBS) \ - && $(MAKE) \ - -C $(build)/$(cryptsetup_dir) \ - prefix="$(INSTALL)" \ - install + $(MAKE) \ + -C $(build)/$(cryptsetup_dir) \ + prefix="$(INSTALL)" \ + install cryptsetup_output := \ src/.libs/cryptsetup \