aboutsummaryrefslogtreecommitdiff
path: root/reproduce/software/make/build-rules.mk
diff options
context:
space:
mode:
Diffstat (limited to 'reproduce/software/make/build-rules.mk')
-rw-r--r--reproduce/software/make/build-rules.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/reproduce/software/make/build-rules.mk b/reproduce/software/make/build-rules.mk
index f888df7..b82ccc0 100644
--- a/reproduce/software/make/build-rules.mk
+++ b/reproduce/software/make/build-rules.mk
@@ -110,7 +110,10 @@ cbuild = if [ x$(static_build) = xyes ] && [ $(3)x = staticx ]; then \
export LDFLAGS="$$LDFLAGS -static"; \
opts="-DBUILD_SHARED_LIBS=OFF"; \
fi; \
- cd $(ddir) && rm -rf $(2) && tar xf $(1) && cd $(2) \
+ cd $(ddir) \
+ && rm -rf $(2) \
+ && tar xf $(1) \
+ && cd $(2) \
&& rm -rf project-build \
&& mkdir project-build \
&& cd project-build \
@@ -119,4 +122,4 @@ cbuild = if [ x$(static_build) = xyes ] && [ $(3)x = staticx ]; then \
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON $$opts $(4) \
&& make && make install \
&& cd ../.. \
- rm -rf $(2)
+ && rm -rf $(2)