From: Sebastien Douheret Date: Tue, 20 Jun 2017 18:48:33 +0000 (+0200) Subject: Fiw webapp/install rule. X-Git-Tag: v0.1.0-beta~24 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=d21eb59c4f7fe9844646bd60ac34aa1d3cbb792f;p=src%2Fxds%2Fxds-server.git Fiw webapp/install rule. test xxx && yyy doesn't work because "&&" characters seems interpreted by make. Workaround is to write test statement with if syntax. --- diff --git a/Makefile b/Makefile index c13e1e5..29a33a8 100644 --- a/Makefile +++ b/Makefile @@ -119,7 +119,7 @@ webapp/debug: webapp/install: (cd webapp && npm install) - @test -d ${DESTDIR}/usr/local/etc && rm -rf ${DESTDIR}/usr + @if [ -d ${DESTDIR}/usr/local/etc ]; then rm -rf ${DESTDIR}/usr; fi .PHONY: scripts scripts: