aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorChristopher Li <sparse@chrisli.org>2014-01-29 01:05:45 -0800
committerChristopher Li <sparse@chrisli.org>2014-01-29 01:08:34 -0800
commit0ed81bf7ae8f61e62b329c8495ebfcf28106f333 (patch)
treea6ac665e785e1cc770fa19aa16bcfd8780826018 /Makefile
parent8e5528f42f3cc546dbdb866203dec28f775fac46 (diff)
downloadsparse-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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 10fb38d0..9227d175 100644
--- a/Makefile
+++ b/Makefile
@@ -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