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

Fix running make -C build docker #1358

Merged
merged 1 commit into from
Apr 20, 2024
Merged

Commits on Apr 20, 2024

  1. Fix running make -C build docker

    Without this change I get the following error:
    `docker: Error response from daemon: create .: volume name is too short,
    names should be at least two alphanumeric characters.`
    
    After fixing that by using `pwd`, I get the following (the w flag is
    added due to `-C build`): `make: *** No rule to make target 'w'`
    Fix this by using -$(MAKEFLAGS). I confirmed that both
    `make -C build docker -j4` and `cd build && make docker -j4` work.
    arichardson committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    906ccee View commit details
    Browse the repository at this point in the history