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 spurious creation of '=' file #98

Merged
merged 2 commits into from
Jul 27, 2020

Commits on Jul 27, 2020

  1. Fix spurious creation of '=' file

    The following is quoted from Marcin Cieślak [*]:
    When running under FreeBSD /bin/sh (and not ksh) we get spurious
    file named '=' created in the root. This is because the "checksh"
    function runs /bin/sh -c '(( .sh.version >= 20111111 ))' which
    produces a "=" file with /bin/sh as a side effect.
    
    This bug was reported in ksh93#13, but was closed in error. I
    was still getting the "=" file to generate on FreeBSD.
    
    bin/package,
    src/cmd/INIT/package.sh:
    - Fix the creation of a spurious '=' file by making sure the shell
      has support for (( ... )) expressions.
    
    .gitignore:
    - Remove the '=' file entry since it no longer has a purpose.
    
    [*]: https://bsd.network/@saper/103196289917156347
    JohnoKing committed Jul 27, 2020
    Configuration menu
    Copy the full SHA
    a3a017d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c5cad60 View commit details
    Browse the repository at this point in the history