2008-10-27 17:08:02

by Cong Wang

[permalink] [raw]
Subject: fs/nfs_common/Makefile: fix the C file name


There's no file named 'nfs_acl.c' in that directory, it is 'nfsacl.c'.

Signed-off-by: WANG Cong <[email protected]>
Cc: J. Bruce Fields <[email protected]>

---
diff --git a/fs/nfs_common/Makefile b/fs/nfs_common/Makefile
index f689ed8..5cb60c5 100644
--- a/fs/nfs_common/Makefile
+++ b/fs/nfs_common/Makefile
@@ -2,6 +2,6 @@
# Makefile for Linux filesystem routines that are shared by client and server.
#

-obj-$(CONFIG_NFS_ACL_SUPPORT) += nfs_acl.o
+obj-$(CONFIG_NFS_ACL_SUPPORT) += nfsacl.o

nfs_acl-objs := nfsacl.o



2008-10-27 19:01:58

by Trond Myklebust

[permalink] [raw]
Subject: Re: fs/nfs_common/Makefile: fix the C file name

On Mon, 2008-10-27 at 17:07 +0000, Am=C3=A9rico Wang wrote:
> There's no file named 'nfs_acl.c' in that directory, it is 'nfsacl.c'=
=2E
>=20
> Signed-off-by: WANG Cong <[email protected]>
> Cc: J. Bruce Fields <[email protected]>
>=20
> ---
> diff --git a/fs/nfs_common/Makefile b/fs/nfs_common/Makefile
> index f689ed8..5cb60c5 100644
> --- a/fs/nfs_common/Makefile
> +++ b/fs/nfs_common/Makefile
> @@ -2,6 +2,6 @@
> # Makefile for Linux filesystem routines that are shared by client a=
nd server.
> #
> =20
> -obj-$(CONFIG_NFS_ACL_SUPPORT) +=3D nfs_acl.o
> +obj-$(CONFIG_NFS_ACL_SUPPORT) +=3D nfsacl.o
> =20
> nfs_acl-objs :=3D nfsacl.o

NAK. The existing line is correct because the _module_ is called
nfs_acl.ko.

Trond