base-files: librt should depend on libpthread, not the other way around
In uClibc 0.9.32 as well as recent versions of glibc and eglibc, librt depends on libpthread. Signed-off-by: Mark Mentovai <mark@moxienet.com> SVN-Revision: 25548
This commit is contained in:
parent
9d4d2587d7
commit
e5e6dfe384
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,6 @@ endef
|
|||
define Package/libpthread
|
||||
$(call Package/libc/Default)
|
||||
TITLE:=POSIX thread library
|
||||
DEPENDS:= +librt
|
||||
endef
|
||||
|
||||
define Package/libpthread/config
|
||||
|
@ -223,6 +222,7 @@ endef
|
|||
define Package/librt
|
||||
$(call Package/libc/Default)
|
||||
TITLE:=POSIX.1b RealTime extension library
|
||||
DEPENDS:=+libpthread
|
||||
endef
|
||||
|
||||
define Package/librt/config
|
||||
|
|
Loading…
Reference in a new issue