diff options
author | Swift Geek <swiftgeek@gmail.com> | 2019-11-03 22:55:13 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2019-11-03 22:55:13 +0000 |
commit | cc0ff53ec2ae9e576824dd92ed441e8766f73014 (patch) | |
tree | f82621cca0c84a10491c84b1ee8e24f267d40250 /projects/ich9gen | |
parent | b7b39afdd822e582140c3767e71efd40fd4875ae (diff) | |
parent | 7c58ae4cdf4c31188a581ca7685bda889132dda9 (diff) | |
download | librebootfr-cc0ff53ec2ae9e576824dd92ed441e8766f73014.tar.gz librebootfr-cc0ff53ec2ae9e576824dd92ed441e8766f73014.zip |
Merge branch 'bugs' of and_who/libreboot into master
Diffstat (limited to 'projects/ich9gen')
-rwxr-xr-x | projects/ich9gen/ich9gen | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/projects/ich9gen/ich9gen b/projects/ich9gen/ich9gen index 71567329..5ba9ae2f 100755 --- a/projects/ich9gen/ich9gen +++ b/projects/ich9gen/ich9gen @@ -58,23 +58,20 @@ build() { fi local sources_path="$(project_sources_path "$project" "$repository" "$@")" - local build_path="$(project_build_path "$project" "$@")" mkdir -p "$build_path" make -C "$sources_path" -j"$TASKS" ich9gen - ( - local macaddress="$(ich9gen_macaddress)" + local macaddress="$(ich9gen_macaddress)" - cd "$build_path" + cd "$build_path" - if [[ -n $macaddress ]]; then - "$sources_path"/ich9gen --macaddress "$macaddress" - else - "$sources_path"/ich9gen - fi - ) + if [[ -n $macaddress ]]; then + "$sources_path"/ich9gen --macaddress "$macaddress" + else + "$sources_path"/ich9gen + fi cp "$sources_path/ich9gen" "$build_path" make -C "$sources_path" clean |