summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilman Blumenbach <tilman+git@ax86.net>2016-03-11 08:47:44 +0100
committerJoey Hess <joeyh@joeyh.name>2016-03-13 17:26:55 -0400
commited82fdae2bbffb68983d538b0c5028e95299b0a2 (patch)
treecc15a80e50a2867175113fae818f218642559adf
parentff5a3f5bbb2c6238a21c20683e20ec6f1093a385 (diff)
Make Pacman 5 call pre-transaction hook as early as possible.
Only the post-transaction hook should be called as _late_ as possible.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 16f4a5a..b1154cf 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ ifeq ($(HIGHLEVEL_PACKAGE_MANAGER),apt)
endif
ifeq ($(LOWLEVEL_PACKAGE_MANAGER),pacman)
mkdir -p $(DESTDIR)$(prefix)/share/libalpm/hooks
- $(INSTALL_DATA) ./pacman-pre-install.hook $(DESTDIR)$(prefix)/share/libalpm/hooks/95-etckeeper-pre-install.hook
+ $(INSTALL_DATA) ./pacman-pre-install.hook $(DESTDIR)$(prefix)/share/libalpm/hooks/05-etckeeper-pre-install.hook
$(INSTALL_DATA) ./pacman-post-install.hook $(DESTDIR)$(prefix)/share/libalpm/hooks/95-etckeeper-post-install.hook
endif
ifeq ($(LOWLEVEL_PACKAGE_MANAGER),pacman-g2)