diff options
author | Francis Dupont <fdupont@isc.org> | 2015-05-11 16:19:43 +0200 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2015-05-11 16:19:43 +0200 |
commit | 741ff09b743307bad28ae13db440e5e0f402d319 (patch) | |
tree | 0b852852392754d8f2a6ea74296fae4a9afb4c6d /tools | |
parent | [master] updated git hash (diff) | |
download | kea-741ff09b743307bad28ae13db440e5e0f402d319.tar.xz kea-741ff09b743307bad28ae13db440e5e0f402d319.zip |
[master] fixed the silly + vs path_replacer.sh issue (#3713)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/path_replacer.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/path_replacer.sh.in b/tools/path_replacer.sh.in index 43d7bff259..300ef7710a 100644 --- a/tools/path_replacer.sh.in +++ b/tools/path_replacer.sh.in @@ -35,4 +35,4 @@ echo "Replacing \@localstatedir\@ with ${localstatedir}" echo "Input file: $1" echo "Output file: $2" -sed -e "s+\@localstatedir\@+${localstatedir}+g; s+\@prefix@+${prefix}+g; s+\@sysconfdir@+${sysconfdir}+g" $1 > $2 +sed -e "s@SEP@\@localstatedir\@@SEP@${localstatedir}@SEP@g; s@SEP@\@prefix@@SEP@${prefix}@SEP@g; s@SEP@\@sysconfdir@@SEP@${sysconfdir}@SEP@g" $1 > $2 |