From patchwork Fri Sep 19 05:50:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Theodore Ts'o X-Patchwork-Id: 391093 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 83F2814012C for ; Fri, 19 Sep 2014 15:51:06 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755632AbaISFvF (ORCPT ); Fri, 19 Sep 2014 01:51:05 -0400 Received: from imap.thunk.org ([74.207.234.97]:36939 "EHLO imap.thunk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755615AbaISFvE (ORCPT ); Fri, 19 Sep 2014 01:51:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=thunk.org; s=ef5046eb; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=PZH+3ymBgnL6UsBJOBDmvaWGjpkdbKgOxphJwUjjLO4=; b=N9KTQI9ZRO3qrOxcVEbVbjCwwkr3ceYQuaykUV2XKVdMNEi+IV332dJdu2enyTiiNv3iNrtBNofCCWJkQQ9Qqafn1xezk3+Ep7wGksqH6aB4l5ByvAIMG3q1eh1lklUIrSecEhwazIew/vuqSg5TBmUVIK7KqL0gFrnsKy7GGe4=; Received: from root (helo=closure.thunk.org) by imap.thunk.org with local-esmtp (Exim 4.80) (envelope-from ) id 1XUr5y-0006Nf-Pf; Fri, 19 Sep 2014 05:51:02 +0000 Received: by closure.thunk.org (Postfix, from userid 15806) id CF246580F80; Fri, 19 Sep 2014 01:51:01 -0400 (EDT) From: Theodore Ts'o To: Ext4 Developers List Cc: Theodore Ts'o Subject: [PATCH 3/4] Fix build failures due to missing $(SYSLIBS) Date: Fri, 19 Sep 2014 01:50:57 -0400 Message-Id: <1411105858-21120-3-git-send-email-tytso@mit.edu> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1411105858-21120-1-git-send-email-tytso@mit.edu> References: <1411105858-21120-1-git-send-email-tytso@mit.edu> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: tytso@thunk.org X-SA-Exim-Scanned: No (on imap.thunk.org); SAEximRunCond expanded to false Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org Two link lines were missing $(SYSLIBS), which is needed for dietlibc. Signed-off-by: Theodore Ts'o --- lib/ext2fs/Makefile.in | 2 +- misc/Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index 45e733c..f155233 100644 --- a/lib/ext2fs/Makefile.in +++ b/lib/ext2fs/Makefile.in @@ -476,7 +476,7 @@ tst_inline: $(srcdir)/inline.c $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBCOM_ERR) tst_inline_data: inline_data.c $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBCOM_ERR) $(E) " LD $@" $(Q) $(CC) -o tst_inline_data $(srcdir)/inline_data.c $(ALL_CFLAGS) \ - -DDEBUG $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) + -DDEBUG $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(SYSLIBS) tst_csum: csum.c $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBCOM_ERR) $(STATIC_LIBE2P) \ $(top_srcdir)/lib/e2p/e2p.h diff --git a/misc/Makefile.in b/misc/Makefile.in index 0b59c0c..d4a02d3 100644 --- a/misc/Makefile.in +++ b/misc/Makefile.in @@ -351,7 +351,7 @@ e2fuzz: $(E2FUZZ_OBJS) $(DEPLIBS) $(DEPLIBBLKID) $(DEPLIBUUID) \ $(DEPLIBQUOTA) $(LIBEXT2FS) $(E) " LD $@" $(Q) $(CC) $(ALL_LDFLAGS) -o e2fuzz $(E2FUZZ_OBJS) $(LIBS) \ - $(LIBBLKID) $(LIBUUID) $(LIBEXT2FS) + $(LIBBLKID) $(LIBUUID) $(LIBEXT2FS) $(SYSLIBS) filefrag: $(FILEFRAG_OBJS) $(E) " LD $@"