diff options
author | Christian Hesse <mail@eworm.de> | 2016-05-15 20:33:25 +0200 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-05-17 10:24:29 -0400 |
commit | 57c4d42d7eb9e648b996ae7f8baba29fa91fac7d (patch) | |
tree | 0f368f5336239b08bd1f0c65523aa26f853ef15c | |
parent | dc10f803eef8fa823d54357e36a4a1d5cac27d64 (diff) |
Make Pacman 5 call etckeeper post transaction hook as late as possible
... for real this time. Other hooks do not have a numeric prefix, so
'95-' still resulted in the first commit to be run. Change the file name
prefix to 'zz-' and hold thumbs.
Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ endif ifeq ($(LOWLEVEL_PACKAGE_MANAGER),pacman) mkdir -p $(DESTDIR)$(prefix)/share/libalpm/hooks $(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 + $(INSTALL_DATA) ./pacman-post-install.hook $(DESTDIR)$(prefix)/share/libalpm/hooks/zz-etckeeper-post-install.hook endif ifeq ($(LOWLEVEL_PACKAGE_MANAGER),pacman-g2) mkdir -p $(DESTDIR)$(etcdir)/pacman-g2/hooks |