From 37176cdddf98c8884a39179560d5caa07ceddd0f Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Sat, 13 Dec 2014 11:41:12 -0500 Subject: docs/git/index.html#build: fix build-release instructions Tell the user how to properly build flashrom/bucts with static linking. Update build-release. --- (limited to 'builddeps-bucts') diff --git a/builddeps-bucts b/builddeps-bucts index ead751b..7125e83 100755 --- a/builddeps-bucts +++ b/builddeps-bucts @@ -32,7 +32,14 @@ cd bucts make clean # build bucts -make +if (( $# != 1 )); then + # build it dynamically linked + make +else + git apply ../resources/bucts/patch/staticlink.diff + # build it statically linked + make +fi # done. go back to main directory cd ../ -- cgit v0.9.1