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

Ensure meson's prefix is a valid absolute path #17206

Open
wants to merge 1 commit into
base: develop2
Choose a base branch
from

Commits on Oct 23, 2024

  1. Ensure meson's prefix is a valid absolute path

    The path / is not considered an absolute path on Windows, failing with:
    
        ERROR: prefix value '/' must be an absolute path
    
    os.path.abspath ensures that "/" becomes a valid absolute path on all major
    platforms, resolving to "/" on Linux and macOS, and to "C:\" (or whichever
    filesystem is currently active, could be E:\ as well) on Windows.
    
    Closes conan-io#17204.
    shoeffner committed Oct 23, 2024
    Configuration menu
    Copy the full SHA
    9ed628c View commit details
    Browse the repository at this point in the history