Author: pierre
Date: Sat Jun 15 13:16:35 2019
New Revision: 4109

Log:
Various fixes for Kconfiglib:
- remove the old setting of LANG in BLFS/Makefile
- explicitly use python3, because now menuconfig.py has #!/usr/bin/python,
  we may have only python3 available
- add quotes in Config.in for BLFS

Modified:
   jhalfs/trunk/BLFS/Makefile
   jhalfs/trunk/BLFS/xsl/gen_config.xsl
   jhalfs/trunk/Makefile

Modified: jhalfs/trunk/BLFS/Makefile
==============================================================================
--- jhalfs/trunk/BLFS/Makefile  Sat Jun 15 10:25:10 2019        (r4108)
+++ jhalfs/trunk/BLFS/Makefile  Sat Jun 15 13:16:35 2019        (r4109)
@@ -11,10 +11,6 @@
   Q = @
 endif
 
-# Known behavior
-LANG=C
-LC_ALL=C
-
 # Makefile should reside in a directory where there are two subdirectories
 # initially:
 TOPDIR           = $(shell pwd)
@@ -102,7 +98,7 @@
 
 $(CONFIG_OUT): $(CONFIG_CONFIG_IN)
        $(Q)CONFIG_="" KCONFIG_CONFIG=configuration \
-           $(MENU)/menuconfig.py $(CONFIG_CONFIG_IN)
+           python3 $(MENU)/menuconfig.py $(CONFIG_CONFIG_IN)
 
 $(CONFIG_CONFIG_IN): $(PACK_LIST) $(XSLDIR)/gen_config.xsl
        $(Q)xsltproc --nonet -o $@ $(XSLDIR)/gen_config.xsl $(PACK_LIST)

Modified: jhalfs/trunk/BLFS/xsl/gen_config.xsl
==============================================================================
--- jhalfs/trunk/BLFS/xsl/gen_config.xsl        Sat Jun 15 10:25:10 2019        
(r4108)
+++ jhalfs/trunk/BLFS/xsl/gen_config.xsl        Sat Jun 15 13:16:35 2019        
(r4109)
@@ -25,9 +25,9 @@
 endchoice
 config  MAIL_SERVER
         string
-        default sendmail        if MS_sendmail
-        default postfix         if MS_postfix
-        default exim            if MS_exim
+        default "sendmail"        if MS_sendmail
+        default "postfix"         if MS_postfix
+        default "exim"            if MS_exim
 
 endmenu
 

Modified: jhalfs/trunk/Makefile
==============================================================================
--- jhalfs/trunk/Makefile       Sat Jun 15 10:25:10 2019        (r4108)
+++ jhalfs/trunk/Makefile       Sat Jun 15 13:16:35 2019        (r4109)
@@ -13,7 +13,8 @@
 
 menuconfig:
        @cp -a configuration configuration.old 2>/dev/null || true
-       @CONFIG_="" KCONFIG_CONFIG=configuration $(CONFIG)/menuconfig.py 
$(CONFIG_CONFIG_IN)
+       @CONFIG_="" KCONFIG_CONFIG=configuration \
+           python3 $(CONFIG)/menuconfig.py $(CONFIG_CONFIG_IN)
 
 # Clean up
 
-- 
http://lists.linuxfromscratch.org/listinfo/alfs-log
Unsubscribe: See the above information page

Reply via email to