* [Buildroot] [git commit] package/nano: really disable nanorc for !BR2_PACKAGE_FILE
@ 2023-11-04 20:37 Thomas Petazzoni via buildroot
2023-11-09 12:47 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-11-04 20:37 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=3c71477f663c64bf7e3455e235f610fe17d0956c
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Commit 3c4fa30f7abf (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 <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
package/nano/nano.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/nano/nano.mk b/package/nano/nano.mk
index 8a2003b92a..8b93527bec 100644
--- a/package/nano/nano.mk
+++ b/package/nano/nano.mk
@@ -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
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-11-09 12:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-04 20:37 [Buildroot] [git commit] package/nano: really disable nanorc for !BR2_PACKAGE_FILE Thomas Petazzoni via buildroot
2023-11-09 12:47 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox