Skip to content

Commit

Permalink
package/nano: really disable nanorc for !BR2_PACKAGE_FILE
Browse files Browse the repository at this point in the history
Commit 3c4fa30 (package/nano: fix tiny build) tried to explicitly
disable libmagic/coloring/nanorc, but accidently passed 2x
--disable-libmagic instead of --disable-nanorc.  Fix that.

Cc: Fabrice Fontaine <[email protected]>
Signed-off-by: Peter Korsgaard <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
  • Loading branch information
jacmet authored and tpetazzoni committed Nov 4, 2023
1 parent 6122ba6 commit 3c71477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/nano/nano.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ifeq ($(BR2_PACKAGE_FILE),y)
NANO_DEPENDENCIES += file
NANO_CONF_OPTS += --enable-libmagic --enable-color --enable-nanorc
else
NANO_CONF_OPTS += --disable-libmagic --disable-libmagic --disable-color
NANO_CONF_OPTS += --disable-libmagic --disable-color --disable-nanorc
endif # BR2_PACKAGE_FILE
endif # BR2_PACKAGE_NANO_TINY

Expand Down

0 comments on commit 3c71477

Please sign in to comment.