From patchwork Mon May 14 03:04:28 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Kent X-Patchwork-Id: 10396533 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 69C5060236 for ; Mon, 14 May 2018 03:04:39 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 532D229079 for ; Mon, 14 May 2018 03:04:39 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4E86629005; Mon, 14 May 2018 03:04:39 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E9EED29044 for ; Mon, 14 May 2018 03:04:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752053AbeENDEg (ORCPT ); Sun, 13 May 2018 23:04:36 -0400 Received: from icp-osb-irony-out8.external.iinet.net.au ([203.59.1.225]:37992 "EHLO icp-osb-irony-out8.external.iinet.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752041AbeENDEd (ORCPT ); Sun, 13 May 2018 23:04:33 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2DGCgBP/Pha/+U/0XZcHAEBAQQBAQoBA?= =?us-ascii?q?YNDgVwog3KUcEUBAQEDBoEHNHyOQYZpHhgBhEACgwkhNxUBAgEBAQEBAQJsKIU?= =?us-ascii?q?pBiNWEBgBDAIYDgICRxAGE4UXDKl9ghwaAogggieBCYccgQyBB4E+hxiDN4I0I?= =?us-ascii?q?AKMeos8CY5RgSgOhjWFBIdIikAyIoFSTS4Kgn6QWzIwegEBjRuCRgEB?= X-IPAS-Result: =?us-ascii?q?A2DGCgBP/Pha/+U/0XZcHAEBAQQBAQoBAYNDgVwog3KUcEU?= =?us-ascii?q?BAQEDBoEHNHyOQYZpHhgBhEACgwkhNxUBAgEBAQEBAQJsKIUpBiNWEBgBDAIYD?= =?us-ascii?q?gICRxAGE4UXDKl9ghwaAogggieBCYccgQyBB4E+hxiDN4I0IAKMeos8CY5RgSg?= =?us-ascii?q?OhjWFBIdIikAyIoFSTS4Kgn6QWzIwegEBjRuCRgEB?= X-IronPort-AV: E=Sophos;i="5.49,398,1520870400"; d="scan'208";a="126179625" Received: from unknown (HELO pluto.themaw.net) ([118.209.63.229]) by icp-osb-irony-out8.iinet.net.au with ESMTP; 14 May 2018 11:04:28 +0800 Subject: [PATCH 06/10] autofs - update fs/autofs4/Makefile From: Ian Kent To: Andrew Morton Cc: linux-fsdevel , autofs mailing list , Kernel Mailing List Date: Mon, 14 May 2018 11:04:28 +0800 Message-ID: <152626706824.28589.1915028175544560855.stgit@pluto.themaw.net> In-Reply-To: <152626703024.28589.9571964661718767929.stgit@pluto.themaw.net> References: <152626703024.28589.9571964661718767929.stgit@pluto.themaw.net> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Update Makefile to build from source in fs/autofs instead of fs/autofs4. Signed-off-by: Ian Kent --- fs/autofs4/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/autofs4/Makefile b/fs/autofs4/Makefile index a811c1f7d9ab..417dd726d9ef 100644 --- a/fs/autofs4/Makefile +++ b/fs/autofs4/Makefile @@ -4,4 +4,6 @@ obj-$(CONFIG_AUTOFS4_FS) += autofs4.o -autofs4-objs := init.o inode.o root.o symlink.o waitq.o expire.o dev-ioctl.o +autofs4-objs := ../autofs/init.o ../autofs/inode.o ../autofs/root.o \ + ../autofs/symlink.o ../autofs/waitq.o ../autofs/expire.o \ + ../autofs/dev-ioctl.o