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 <andriy.shevchenko@linux.intel.com> Signed-off-by: Jan Kara <jack@suse.cz> Message-Id: <20240508152129.1445372-1-andriy.shevchenko@linux.intel.com>
1 parent 290fa94 commit 1dd719a

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

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)