diff options
| author | Christopher Li <sparse@chrisli.org> | 2014-01-29 01:05:45 -0800 |
|---|---|---|
| committer | Christopher Li <sparse@chrisli.org> | 2014-01-29 01:08:34 -0800 |
| commit | 0ed81bf7ae8f61e62b329c8495ebfcf28106f333 (patch) | |
| tree | a6ac665e785e1cc770fa19aa16bcfd8780826018 /Makefile | |
| parent | 8e5528f42f3cc546dbdb866203dec28f775fac46 (diff) | |
| download | sparse-dev-0ed81bf7ae8f61e62b329c8495ebfcf28106f333.tar.gz | |
Fix make dist failure
This bug was introduced in commit bcdb5ee5. The SPARSE_VERSION
already starts with 'v'.
Signed-off-by: Christopher Li <sparse@chrisli.org>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -198,7 +198,7 @@ clean: clean-check rm -f *.[oa] .*.d *.so $(PROGRAMS) $(SLIB_FILE) pre-process.h sparse.pc dist: - @if test "v$(SPARSE_VERSION)" != "v$(VERSION)" ; then \ + @if test "$(SPARSE_VERSION)" != "v$(VERSION)" ; then \ echo 'Update VERSION in the Makefile before running "make dist".' ; \ exit 1 ; \ fi |
