Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile fixes #2934

Merged
merged 1 commit into from
Dec 12, 2023
Merged

Makefile fixes #2934

merged 1 commit into from
Dec 12, 2023

Commits on Dec 12, 2023

  1. targets.mk: fix inconsistent env variable BROKEN

    BROKEN TARGETS were built when BROKEN was set as a variable regardless of
    it's value. Even an empty BROKEN variable caused BROKEN TARGETS to be
    built. For DEVICES the number was evaluated and compared to true by Lua.
    
    Make behavior consistent for relevant values UNSET/EMPTY/0 and 1:
    UNSET/EMPTY/0: Don't build BROKEN TARGETS and DEVICES
    1: Build BROKEN TARGETS and DEVICES
    
    The behavior remains inconsistent for all positive numbers except 1.
    (even floating point)
    Djfe committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    bc8778c View commit details
    Browse the repository at this point in the history