diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-08-08 00:21:33 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-08-08 00:21:33 +0500 |
commit | 9b3f3c93e368ad92e5d3add7abd4b5ec22dedb64 (patch) | |
tree | 30bbb1fc8f55f9733b32c233fe966ec6499af496 | |
parent | 158acca7044a7d141c7a2fded034d4d084b75017 (diff) | |
download | prosody-9b3f3c93e368ad92e5d3add7abd4b5ec22dedb64.tar.gz prosody-9b3f3c93e368ad92e5d3add7abd4b5ec22dedb64.zip |
Fixed: Zeros could be stripped from the version string the Makefile extracts from the local hg repository (thanks albert)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ prosody.cfg.lua.install: sed 's|certs/|$(INSTALLEDCONFIG)/certs/|' prosody.cfg.lua.dist > prosody.cfg.lua.install prosody.release: - test -e .hg/dirstate && hexdump -n6 -e'6/1 "%01x"' .hg/dirstate \ + test -e .hg/dirstate && hexdump -n6 -e'6/1 "%02x"' .hg/dirstate \ > prosody.version || true prosody.version: prosody.release |