Skip to content

Commit

Permalink
fix: fix the bug for ext4fs feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Azure-stars committed Jun 3, 2024
1 parent a22bef3 commit 38a56ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/make/features.mk
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ else ifneq ($(findstring monolithic,$(APP)),)
ifneq ($(filter fs net pipe select epoll,$(FEATURES)),)
override FEATURES += fd
endif
ifeq ($(filter lwext4_rust,$(FEATURES)),)
ifneq ($(filter lwext4_rust,$(FEATURES)),)
override FEATURES += lwext4_rust
endif
ifeq ($(filter ext4_rs,$(FEATURES)),)
ifneq ($(filter ext4_rs,$(FEATURES)),)
override FEATURES += ext4_rs
endif
endif
Expand Down

0 comments on commit 38a56ed

Please sign in to comment.