mirror of
git://git.yoctoproject.org/poky
synced 2026-09-12 18:14:18 +00:00
Modify the libintl-link.patch because the upstream removed old fuser in 22.7 (From OE-Core rev: da398f759a7c63369cfd0c8eb92ca1dc3be1472d) Signed-off-by: Mei Lei <lei.mei@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
882 B
Diff
31 lines
882 B
Diff
Upstream-Status: Inappropriate [configuration]
|
|
Signed-off-by: Mei Lei <lei.mei@intel.com>
|
|
|
|
uClibc needs to link against an external libintl but it doesn't do this by
|
|
default. The configure script correctly figures out if this is needed, but
|
|
doesn't actually link to the libraries it decides on. This makes it link to
|
|
them if they are needed:
|
|
|
|
--- psmisc-22.13/src/Makefile.am
|
|
+++ psmisc-22.13/src/Makefile.am
|
|
@@ -25,16 +25,17 @@ endif
|
|
|
|
|
|
fuser_SOURCES = fuser.c comm.h signals.c signals.h i18n.h fuser.h
|
|
+fuser_LDADD = @INTLLIBS@
|
|
|
|
killall_SOURCES = killall.c comm.h signals.c signals.h i18n.h
|
|
|
|
-killall_LDADD = @SELINUX_LIB@
|
|
+killall_LDADD = @SELINUX_LIB@ @INTLLIBS@
|
|
|
|
peekfd_SOURCES = peekfd.c
|
|
|
|
pstree_SOURCES = pstree.c comm.h i18n.h
|
|
|
|
-pstree_LDADD = @TERMCAP_LIB@ @SELINUX_LIB@
|
|
+pstree_LDADD = @TERMCAP_LIB@ @SELINUX_LIB@ @INTLLIBS@
|
|
|
|
prtstat_SOURCES = prtstat.c prtstat.h
|
|
|