From c229e8909096540910db9d52689308279a1fd1d0 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Thu, 12 Dec 2019 10:22:30 +0100 Subject: Fix: programs linking against libsquashfs also need pthread Signed-off-by: David Oberhollenzer --- tar/Makemodule.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tar') diff --git a/tar/Makemodule.am b/tar/Makemodule.am index 26ac95c..9d56ebb 100644 --- a/tar/Makemodule.am +++ b/tar/Makemodule.am @@ -1,9 +1,12 @@ sqfs2tar_SOURCES = tar/sqfs2tar.c +sqfs2tar_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) sqfs2tar_LDADD = libcommon.a libsquashfs.la libtar.a libcompat.a -sqfs2tar_LDADD += libfstree.a $(LZO_LIBS) +sqfs2tar_LDADD += libfstree.a $(LZO_LIBS) $(PTHREAD_LIBS) tar2sqfs_SOURCES = tar/tar2sqfs.c +tar2sqfs_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) tar2sqfs_LDADD = libcommon.a libsquashfs.la libtar.a tar2sqfs_LDADD += libfstree.a libcompat.a libfstree.a $(LZO_LIBS) +tar2sqfs_LDADD += $(PTHREAD_LIBS) bin_PROGRAMS += sqfs2tar tar2sqfs -- cgit v1.2.3