summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow (mars.fritz.box) <paul@buetow.org>2014-03-02 13:39:11 +0100
committerPaul Buetow (mars.fritz.box) <paul@buetow.org>2014-03-02 13:39:11 +0100
commitc1823fbf10c37c4ba542a4fa2006b4dfaf00a226 (patch)
tree3be8a144e530fdd1027f219bff62660ba3e0efa5
parentc307d374640084ed0fe4f6689f57becce031f530 (diff)
fix version string
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bc5f076..13d8f41 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ all: version documentation build
# Builds the project. Since this is only a fake project, it just copies a script.
build:
cp -p ./src/$(NAME) bin/$(NAME)
- sed -i 's/VERSION_DEVEL/$$(cat .version)/' bin/$(NAME)
+ sed -i "s/VERSION_DEVEL/$$(cat .version)/" bin/$(NAME)
# 'install' installes a fake-root, which will be used to build the Debian package
# $DESTDIR is actually set by the Debian tools.