1. when exec install.sh, no $LKP_SRC 2. first enable $LKP_SRC env 3. mv sbin/install-dependencies.sh to install.sh
Signed-off-by: Wei Jihui weijihuiall@163.com --- Makefile | 2 -- install.sh | 10 +++++++--- 2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile index 0b2d09a2..ae062973 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,6 @@ subsystem: install: mkdir -p $(TARGET_DIR_BIN) ln -sf $(shell pwd)/bin/lkp $(TARGET_DIR_BIN)/lkp - bash sbin/set-env.sh - bash sbin/install-dependencies.sh
.PHONY: doc doc: diff --git a/install.sh b/install.sh index cea1654f..2bd17d54 100644 --- a/install.sh +++ b/install.sh @@ -1,7 +1,11 @@ #!/bin/bash
-. $LKP_SRC/lib/env.sh - -make +. lib/env.sh
+write_host +write_shell_profile "export LKP_SRC=$PWD" +write_shell_profile "export PATH=$PATH:$LKP_SRC/sbin:$LKP_SRC/bin" source $(shell_profile) + +. sbin/install-dependencies.sh +make install