diff options
author | dequis <dx@dxzone.com.ar> | 2015-05-09 16:56:19 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-05-30 23:29:44 -0300 |
commit | 6e21525c241d5f70767463577392aac481d3b051 (patch) | |
tree | 35c29995494131a99c6f2868343828da7a7d303a /configure | |
parent | 0f7eccff5b3f7436f50c66e4270009fa6290a578 (diff) |
configure: workaround for branch names with slashes in them...
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ get_version() { search="(.+)-([0-9]+)-(g[0-9a-f]+)" replace="\1+$timestamp+$branch+\2-\3-git" - BITLBEE_VERSION=$(cd $srcdir; git describe --long --tags | sed -r "s/$search/$replace/") + BITLBEE_VERSION=$(cd $srcdir; git describe --long --tags | sed -r "s#$search#$replace#") unset timestamp branch search replace fi |