From 1fff181da3d5b5f9ea521b5d786e060a2af4f8bd Mon Sep 17 00:00:00 2001 From: Tony Garcia Date: Fri, 25 Jan 2019 16:17:50 -0600 Subject: [PATCH 1/2] Do not add DESTDIR to recap script on install. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7b2605e..2fccbdc 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ uninstall: uninstall-base uninstall-man uninstall-doc uninstall-$(type) install-base: @echo "Installing scripts..." - @sed -i.orig 's|^\s*\(declare\s\+-r\s\+LIBDIR=\).*$$|\1"$(DESTDIR)$(LIBDIR)/recap"|' src/recap + @sed -i.orig 's|^\s*\(declare\s\+-r\s\+LIBDIR=\).*$$|\1"$(LIBDIR)/recap"|' src/recap @install -Dm0755 src/recap $(DESTDIR)$(BINDIR)/recap @install -Dm0755 src/recaplog $(DESTDIR)$(BINDIR)/recaplog @install -Dm0755 src/recaptool $(DESTDIR)$(BINDIR)/recaptool From 9d7d0b927164a0b5f45686570b767733269ef085 Mon Sep 17 00:00:00 2001 From: Tony Garcia Date: Tue, 5 Feb 2019 13:14:51 -0600 Subject: [PATCH 2/2] Release 2.0.1 --- CHANGELOG.md | 5 +++++ src/recap | 2 +- src/recaplog | 2 +- src/recaptool | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f05949..117451b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - +## [2.0.1] - 2018-02-05 +- Fix bug related to DESTDIR included in recap script [(#195)][195] [(#198)][198]. + ## [2.0.0] - 2018-01-22 - Add plugin support [(#155)][155]. - Split recap functionality between core functions and plugins. @@ -207,6 +210,8 @@ All notable changes to this project will be documented in this file. [170]: https://github.com/rackerlabs/recap/issues/170 [174]: https://github.com/rackerlabs/recap/issues/174 [175]: https://github.com/rackerlabs/recap/issues/175 +[195]: https://github.com/rackerlabs/recap/issues/195 +[198]: https://github.com/rackerlabs/recap/issues/198