mirror of
https://github.com/dynup/kpatch
synced 2024-12-22 05:10:01 +00:00
ppc64le: fix gcc-plugin installation
Because $PLUGIN variable is a part of $TARGETS we are trying to install gcc-plugins twice which is treated as an error by install command: /usr/bin/install create-diff-object create-klp-module create-kpatch-module gcc-plugins/ppc64le-plugin.so kpatch-gcc gcc-plugins/ppc64le-plugin.so /usr/local/libexec/kpatch /usr/bin/install: will not overwrite just-created '/usr/local/libexec/kpatch/ppc64le-plugin.so' with 'gcc-plugins/ppc64le-plugin.so' Signed-off-by: Artem Savkov <asavkov@redhat.com>
This commit is contained in:
parent
b3b9e858fe
commit
a4241797fb
@ -35,7 +35,7 @@ $(PLUGIN): gcc-plugins/ppc64le-plugin.c
|
||||
|
||||
install: all
|
||||
$(INSTALL) -d $(LIBEXECDIR)
|
||||
$(INSTALL) $(TARGETS) kpatch-gcc $(PLUGIN) $(LIBEXECDIR)
|
||||
$(INSTALL) $(TARGETS) kpatch-gcc $(LIBEXECDIR)
|
||||
$(INSTALL) -d $(BINDIR)
|
||||
$(INSTALL) kpatch-build $(BINDIR)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user