diff options
author | Carl Worth <cworth@cworth.org> | 2006-08-18 18:19:10 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-08-18 18:19:10 -0700 |
commit | 54755b2d9891981d813384bccde84998def96abf (patch) | |
tree | 4385978595d67b0ec9675fb1292d96ce2c1de088 | |
parent | fadde879fbf8547aaa55e80d21611e7674cd5f8f (diff) |
Remove stray ] that was breaking RELEASE_OR_PUBLISH and many make targets (release-publish, etc.)1.2.4
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 5a47b0e9..cb4496c1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -53,7 +53,7 @@ include $(srcdir)/ChangeLog.mk # make release-check # or make release-publish -RELEASE_OR_SNAPSHOT = $$(if test "x$(CAIRO_VERSION_MINOR)" = "x$$(echo "$(CAIRO_VERSION_MINOR)/2*2" | bc)" ]; then echo release; else echo snapshot; fi) +RELEASE_OR_SNAPSHOT = $$(if test "x$(CAIRO_VERSION_MINOR)" = "x$$(echo "$(CAIRO_VERSION_MINOR)/2*2" | bc)" ; then echo release; else echo snapshot; fi) RELEASE_UPLOAD_HOST = cairographics.org RELEASE_UPLOAD_BASE = /srv/cairo.freedesktop.org/www RELEASE_UPLOAD_DIR = $(RELEASE_UPLOAD_BASE)/$(RELEASE_OR_SNAPSHOT)s |