diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | couchjs/c_src/SConscript | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ compile: @echo "==> couchjs (compile)" @cd couchjs && python scons/scons.py @./rebar compile - @cat $(appfile) | sed s/%VSN%/`git describe --match 1.*`/ > $(appfile) + @cat $(appfile) | sed s/%VSN%/`echo 1.1.1-792-gc8a44ff`/ > $(appfile) clean: @echo "==> couchjs (clean)" diff --git a/couchjs/c_src/SConscript b/couchjs/c_src/SConscript index 68ad5d3e..c0cc4a1f 100644 --- a/couchjs/c_src/SConscript +++ b/couchjs/c_src/SConscript @@ -105,7 +105,7 @@ if not env.GetOption('clean'): ## Define properties for -h / -V - (_, vsn) = runcmd("git describe --match 1.*") + vsn = "1.1.1-792-gc8a44ff" conf.Define("PACKAGE_STRING", '"%s"' % vsn.rstrip()) conf.Define("PACKAGE_NAME", '"Cloudant BigCouch"') conf.Define("PACKAGE_BUGREPORT", '"https://github.com/cloudant/bigcouch/issues"') |