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

ExtUtils::CBuilder - print out commands being run in usable form #19701

Merged
merged 2 commits into from
Jun 8, 2022

Commits on May 9, 2022

  1. ExtUtils::CBuilder - print out commands being run in usable form

    When not set to be quiet, the system commands being run are printed out
    before running them. This can assist with diagnosing issues. It is
    implied that this is a command that could be run by a user.
    
    Since the command is internally run with system using list form, it does not
    involve the shell, and does not need any extra quoting. The printed out
    command however, would be run by a user through a shell. Just joining
    the arguments with spaces will not quote them correctly for use through
    a shell.
    
    Add a new method for quoting a string for the shell. And use this method
    when printing out the command line that we are running.
    haarg committed May 9, 2022
    Configuration menu
    Copy the full SHA
    efdd840 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b864688 View commit details
    Browse the repository at this point in the history