summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorOliver Tappe2008-03-06 20:55:59 +0100
committerOliver Tappe2008-03-06 20:55:59 +0100
commit60268ff3da070da556a2b726f8c8655e75e71d90 (patch)
treeb84d7026b1905a745d2759579dc0799218d3b24a /Makefile
parent* implemented rsync-based build folder strategy for slxconfig-demuxer which (diff)
downloadcore-60268ff3da070da556a2b726f8c8655e75e71d90.tar.gz
core-60268ff3da070da556a2b726f8c8655e75e71d90.tar.xz
core-60268ff3da070da556a2b726f8c8655e75e71d90.zip
* added check for rsync, as we rely on it being installed
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1608 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f8582162..6ebfb50f 100644
--- a/Makefile
+++ b/Makefile
@@ -129,6 +129,10 @@ supported."; \
else \
echo $${DEFAULT_DB_TYPE} >DEFAULT-DB-TYPE; \
fi; \
+ if ! which rsync >/dev/null 2>&1; then \
+ echo " rsync is required, please install it."; \
+ exit 1; \
+ fi; \
echo "Installing OpenSLX project files"; \
mkdir -p $(SLX_BUILD_PATH)$(SLX_CONFIG_PATH) \
-p $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/lib \