diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-01-07 13:43:57 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-01-07 13:43:57 -0800 |
commit | eadf5ad2c1fd478e38cb4d96d1a8d9bcf8b71b38 (patch) | |
tree | d778dd3ff94944bc118faf88f5153e8698cb6c56 | |
parent | f010b39999bd6cd291224cdb2362a9889f37d5ce (diff) | |
download | pandoc-eadf5ad2c1fd478e38cb4d96d1a8d9bcf8b71b38.tar.gz |
deb/Makefile - make DEBPKGVER work.
-rw-r--r-- | deb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deb/Makefile b/deb/Makefile index 7310dc0bd..a81dc3ad0 100644 --- a/deb/Makefile +++ b/deb/Makefile @@ -6,7 +6,7 @@ VAGRANTBOX?=debian/wheezy64 package: VAGRANTBOX=$(VAGRANTBOX) vagrant up - vagrant ssh -c 'DEBPKGVER=$(DEBPKGVER) rm -rf pandoc && git clone https://github.com/jgm/pandoc && cd pandoc && git checkout -b work $(TREE) && git submodule update --init && sh -ev ./deb/make_deb.sh && cp *.deb /vagrant_data/' + vagrant ssh -c 'rm -rf pandoc && git clone https://github.com/jgm/pandoc && cd pandoc && git checkout -b work $(TREE) && git submodule update --init && DEBPKGVER=$(DEBPKGVER) sh -ev ./deb/make_deb.sh && cp *.deb /vagrant_data/' vagrant halt clean: |