Changeset a4af6811


Ignore:
Timestamp:
06/15/2019 08:16:35 PM (5 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
ablfs-more, legacy, trunk
Children:
6622409
Parents:
cf2f109
Message:

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
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • BLFS/Makefile

    rcf2f109 ra4af6811  
    1111  Q = @
    1212endif
    13 
    14 # Known behavior
    15 LANG=C
    16 LC_ALL=C
    1713
    1814# Makefile should reside in a directory where there are two subdirectories
     
    10399$(CONFIG_OUT): $(CONFIG_CONFIG_IN)
    104100        $(Q)CONFIG_="" KCONFIG_CONFIG=configuration \
    105             $(MENU)/menuconfig.py $(CONFIG_CONFIG_IN)
     101            python3 $(MENU)/menuconfig.py $(CONFIG_CONFIG_IN)
    106102
    107103$(CONFIG_CONFIG_IN): $(PACK_LIST) $(XSLDIR)/gen_config.xsl
  • BLFS/xsl/gen_config.xsl

    rcf2f109 ra4af6811  
    2626config  MAIL_SERVER
    2727        string
    28         default sendmail        if MS_sendmail
    29         default postfix         if MS_postfix
    30         default exim            if MS_exim
     28        default "sendmail"        if MS_sendmail
     29        default "postfix"         if MS_postfix
     30        default "exim"            if MS_exim
    3131
    3232endmenu
  • Makefile

    rcf2f109 ra4af6811  
    1414menuconfig:
    1515        @cp -a configuration configuration.old 2>/dev/null || true
    16         @CONFIG_="" KCONFIG_CONFIG=configuration $(CONFIG)/menuconfig.py $(CONFIG_CONFIG_IN)
     16        @CONFIG_="" KCONFIG_CONFIG=configuration \
     17            python3 $(CONFIG)/menuconfig.py $(CONFIG_CONFIG_IN)
    1718
    1819# Clean up
Note: See TracChangeset for help on using the changeset viewer.