diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-06-20 20:48:33 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-06-20 20:48:33 +0200 |
commit | d21eb59c4f7fe9844646bd60ac34aa1d3cbb792f (patch) | |
tree | b4879f0b575e8daf1d86b555de09d1d9f0e765b4 /Makefile | |
parent | 0699037e09e716a17a77dbfc38c3ca553a583775 (diff) |
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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |