Skip to content

Commit

Permalink
Release 2.2.0RC3 to fix the static file bug copying introduced in
Browse files Browse the repository at this point in the history
  • Loading branch information
manolama committed Nov 11, 2015
1 parent e252139 commit 6d2e8dd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,8 @@ install-data-local: staticroot install-data-lib install-data-tools \
install-data-bin install-data-etc
@$(NORMAL_INSTALL)
test -z "$(staticdir)" || $(mkdir_p) "$(DESTDIR)$(staticdir)"
@set -e; pwd; ls -lFh; (cd "$(DEV_TSD_STATICROOT)"; \
list=`find -L . ! -type d`); for p in $$list; do \
@set -e; pwd; ls -lFh; cd "$(DEV_TSD_STATICROOT)"; \
list=`find -L . ! -type d`; for p in $$list; do \
p=$${p#./}; \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
dstdir=`dirname "$(DESTDIR)$(staticdir)/$$p"`; \
Expand Down
11 changes: 11 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
OpenTSDB - User visible changes.

* Version 2.2.0 RC3 (2015-11-11)

Bug Fixes:
- Fix build issues where the static files were not copied into the proper location.

* Version 2.2.0 RC2 (2015-11-09)

Noteworthy Changes:
Expand Down Expand Up @@ -63,6 +68,12 @@ Bug Fixes:
- Avoid OOM issues over Telnet when the sending client isn't reading errors off it's
socket fast enough by blocking writes.

* Version 2.1.3 (2015-11-11)

Bug Fixes:

- Fix build issues where the static files were not copied into the proper location.

* Version 2.1.2 (2015-11-09)

Bug Fixes:
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# along with this library. If not, see <http://www.gnu.org/licenses/>.

# Semantic Versioning (see http://semver.org/).
AC_INIT([opentsdb], [2.2.0RC2], [[email protected]])
AC_INIT([opentsdb], [2.2.0RC3], [[email protected]])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign])

Expand Down

0 comments on commit 6d2e8dd

Please sign in to comment.