From 199bec04165a8bd8d52034963725a2c6161814af Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Thu, 18 May 2017 12:15:01 +0200 Subject: [PATCH] Fix copy of agl directory in make install --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8212824..4bb7207 100644 --- a/Makefile +++ b/Makefile @@ -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) -- 2.16.6