diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-18 12:15:01 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-18 12:15:01 +0200 |
commit | 199bec04165a8bd8d52034963725a2c6161814af (patch) | |
tree | 705c0363dd89099b94d69094b5a57033351fdbc3 /Makefile | |
parent | 0b670a1f12da44bad926d60f25149e2bd771a4bc (diff) |
Fix copy of agl directory in make install
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -95,7 +95,7 @@ install: @test -e $(LOCAL_BINDIR)/xds-start-server.sh -a -d $(LOCAL_BINDIR)/agl || { echo "Please execute first: scripts\n"; exit 1; } @test -e $(LOCAL_TOOLSDIR)/syncthing -a -e $(LOCAL_TOOLSDIR)/syncthing-inotify || { echo "Please execute first: make tools/syncthing\n"; exit 1; } mkdir -p $(INSTALL_DIR) \ - && cp $(LOCAL_BINDIR)/* $(INSTALL_DIR) \ + && cp -a $(LOCAL_BINDIR)/* $(INSTALL_DIR) \ && cp $(LOCAL_TOOLSDIR)/syncthing* $(INSTALL_DIR) mkdir -p $(INSTALL_WEBAPP_DIR) \ && cp -a webapp/dist/* $(INSTALL_WEBAPP_DIR) |