diff options
| author | John Crispin | 2012-08-06 18:51:31 +0000 |
|---|---|---|
| committer | John Crispin | 2012-08-06 18:51:31 +0000 |
| commit | c1b1c9963970d5e0a4ebd2bb9bd89a784b0b0181 (patch) | |
| tree | cdfb457ce9dbb1c21b7e3c1efad6a5d66847e579 | |
| parent | cf801109b0260d3d1f04882726ff44041de7d6a2 (diff) | |
| download | feeds-c1b1c9963970d5e0a4ebd2bb9bd89a784b0b0181.tar.gz | |
libburn was missing dependency to pthread
SVN-Revision: 33023
| -rw-r--r-- | desktop/libs/libburn/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/libs/libburn/Makefile b/desktop/libs/libburn/Makefile index 72b85b3..5665063 100644 --- a/desktop/libs/libburn/Makefile +++ b/desktop/libs/libburn/Makefile @@ -20,10 +20,13 @@ PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk +TARGET_LDFLAGS+=-lpthread + define Package/libburn SECTION:=libs CATEGORY:=Libraries TITLE:=libburn + DEPENDS:=+libpthread URL:=http://www.libburnia-project.org endef |