Message ID | Y5w/cWKyb8vpNMfA@li-4a3a4a4c-28e5-11b2-a85c-a8d192c6f089.ibm.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | BPF |
Headers | show |
Series | tools lib perf: fix install_pkgconfig target | expand |
Em Fri, Dec 16, 2022 at 10:50:41AM +0100, Alexander Gordeev escreveu: > Commit 47e02b94a4c9 ("tools lib perf: Add dependency test > to install_headers") misses the notion of $(DESTDIR_SQ) > for install_pkgconfig target, which leads to error: > > install: cannot create regular file '/usr/lib64/pkgconfig/libperf.pc': Permission denied > make: *** [Makefile:210: install_pkgconfig] Error 1 Thanks, applied. - Arnaldo > Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com> > --- > tools/lib/perf/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/lib/perf/Makefile b/tools/lib/perf/Makefile > index 30b7f91e7147..d8cad124e4c5 100644 > --- a/tools/lib/perf/Makefile > +++ b/tools/lib/perf/Makefile > @@ -208,7 +208,7 @@ install_headers: $(INSTALL_HDRS) $(INSTALL_INTERNAL_HDRS) > > install_pkgconfig: $(LIBPERF_PC) > $(call QUIET_INSTALL, $(LIBPERF_PC)) \ > - $(call do_install,$(LIBPERF_PC),$(libdir_SQ)/pkgconfig,644) > + $(call do_install,$(LIBPERF_PC),$(DESTDIR_SQ)$(libdir_SQ)/pkgconfig,644) > > install_doc: > $(Q)$(MAKE) -C Documentation install-man install-html install-examples > -- > 2.34.1
diff --git a/tools/lib/perf/Makefile b/tools/lib/perf/Makefile index 30b7f91e7147..d8cad124e4c5 100644 --- a/tools/lib/perf/Makefile +++ b/tools/lib/perf/Makefile @@ -208,7 +208,7 @@ install_headers: $(INSTALL_HDRS) $(INSTALL_INTERNAL_HDRS) install_pkgconfig: $(LIBPERF_PC) $(call QUIET_INSTALL, $(LIBPERF_PC)) \ - $(call do_install,$(LIBPERF_PC),$(libdir_SQ)/pkgconfig,644) + $(call do_install,$(LIBPERF_PC),$(DESTDIR_SQ)$(libdir_SQ)/pkgconfig,644) install_doc: $(Q)$(MAKE) -C Documentation install-man install-html install-examples
Commit 47e02b94a4c9 ("tools lib perf: Add dependency test to install_headers") misses the notion of $(DESTDIR_SQ) for install_pkgconfig target, which leads to error: install: cannot create regular file '/usr/lib64/pkgconfig/libperf.pc': Permission denied make: *** [Makefile:210: install_pkgconfig] Error 1 Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com> --- tools/lib/perf/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)