You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2018/08/05 15:52:53 UTC

[couchdb-pkg] branch master updated: Fix non-armv7l builds

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-pkg.git


The following commit(s) were added to refs/heads/master by this push:
     new 579b65c  Fix non-armv7l builds
579b65c is described below

commit 579b65ccf66ca0441fea9440f7f91b21414e983f
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Sun Aug 5 11:52:46 2018 -0400

    Fix non-armv7l builds
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 3d46bb4..60a2c87 100644
--- a/Makefile
+++ b/Makefile
@@ -138,7 +138,7 @@ couch-js-clean:
 couch-js-debs: couch-js-clean
 	mkdir js/build && cd js/build && tar xf ../src/js185-1.0.0.tar.gz --strip-components=1
 	cp -r js/debian js/build
-	[ "$(shell arch)" = "armv7l" ] && rm js/build/debian/*symbols
+	if [ "$(shell arch)" = "armv7l" ]; then rm js/build/debian/*symbols; fi
 	cd js/build && dch -v $(JS_VERSION)~$(PLATFORM) $(JS_DEBCHANGELOG)
 	cd js/build && dpkg-buildpackage -b -us -uc