Skip to content

Commit 1dd719a

Browse files
andy-shevjankara
authored andcommitted
isofs: Use *-y instead of *-objs in Makefile
*-objs suffix is reserved rather for (user-space) host programs while usually *-y suffix is used for kernel drivers (although *-objs works for that purpose for now). Let's correct the old usages of *-objs in Makefiles. Signed-off-by: Andy Shevchenko <[email protected]> Signed-off-by: Jan Kara <[email protected]> Message-Id: <[email protected]>
1 parent 290fa94 commit 1dd719a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

fs/isofs/Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
obj-$(CONFIG_ISO9660_FS) += isofs.o
77

8-
isofs-objs-y := namei.o inode.o dir.o util.o rock.o export.o
9-
isofs-objs-$(CONFIG_JOLIET) += joliet.o
10-
isofs-objs-$(CONFIG_ZISOFS) += compress.o
11-
isofs-objs := $(isofs-objs-y)
8+
isofs-y := namei.o inode.o dir.o util.o rock.o export.o
9+
isofs-$(CONFIG_JOLIET) += joliet.o
10+
isofs-$(CONFIG_ZISOFS) += compress.o

0 commit comments

Comments
 (0)