diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-03-23 20:54:54 +0100 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2021-03-25 13:55:56 -0400 |
commit | 6f00e4f9239b0fcb55d742a5ed9c41202d15b966 (patch) | |
tree | aa0089df9a97f81665df92d23bf49a97a6e1fb60 /app-backup | |
parent | sys-devel/llvm-roc: Version bump to 4.1.0 (diff) | |
download | gentoo-6f00e4f9239b0fcb55d742a5ed9c41202d15b966.tar.gz gentoo-6f00e4f9239b0fcb55d742a5ed9c41202d15b966.tar.bz2 gentoo-6f00e4f9239b0fcb55d742a5ed9c41202d15b966.zip |
app-backup/btrbk: remove unused patch(es)
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/20083
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/btrbk/files/btrbk-0.30.0-make-install-race.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/app-backup/btrbk/files/btrbk-0.30.0-make-install-race.patch b/app-backup/btrbk/files/btrbk-0.30.0-make-install-race.patch deleted file mode 100644 index 518e7df61185..000000000000 --- a/app-backup/btrbk/files/btrbk-0.30.0-make-install-race.patch +++ /dev/null @@ -1,27 +0,0 @@ -https://github.com/digint/btrbk/pull/341 - -From ec123405669762aefe813801e2c49183800cc3a9 Mon Sep 17 00:00:00 2001 -From: Xiretza <xiretza@xiretza.xyz> -Date: Mon, 28 Sep 2020 16:49:19 +0200 -Subject: [PATCH] Fix race condition in `make install` - -If run with -j, it's possible for install-bin-links to run before -install-bin and subsequently fail because $(BINDIR) hasn't been created -yet. ---- - Makefile | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/Makefile b/Makefile -index 030b577..44ab19f 100644 ---- a/Makefile -+++ b/Makefile -@@ -54,7 +54,7 @@ install-bin: - install -d -m 755 "$(DESTDIR)$(BINDIR)" - install -p -m 755 $(BIN) "$(DESTDIR)$(BINDIR)" - --install-bin-links: -+install-bin-links: install-bin - @echo 'installing symlinks...' - for name in $(BIN_LINKS); do \ - ln -s -n -f $(BIN) "$(DESTDIR)$(BINDIR)/$$name"; \ |