-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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
AIX bug in Makefile - find
with -not
#24634
Comments
rvagg
added
build
Issues and PRs related to build files or the CI.
aix
Issues and PRs related to the AIX platform.
labels
Nov 25, 2018
@nodejs/platform-aix |
|
Trott
added a commit
to Trott/io.js
that referenced
this issue
Nov 25, 2018
Replace `find -not` usage with `find !` as `-not` is not universally supported. Fixes: nodejs#24634
Proposed fix in #24635 |
targos
pushed a commit
that referenced
this issue
Nov 27, 2018
Replace `find -not` usage with `find !` as `-not` is not universally supported. Fixes: #24634 PR-URL: #24635 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
rvagg
pushed a commit
that referenced
this issue
Nov 28, 2018
Replace `find -not` usage with `find !` as `-not` is not universally supported. Fixes: #24634 PR-URL: #24635 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
refack
pushed a commit
to refack/node
that referenced
this issue
Jan 14, 2019
Replace `find -not` usage with `find !` as `-not` is not universally supported. Fixes: nodejs#24634 PR-URL: nodejs#24635 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
BethGriggs
pushed a commit
that referenced
this issue
Feb 11, 2019
Replace `find -not` usage with `find !` as `-not` is not universally supported. Fixes: #24634 PR-URL: #24635 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
rvagg
pushed a commit
that referenced
this issue
Feb 28, 2019
Replace `find -not` usage with `find !` as `-not` is not universally supported. Fixes: #24634 PR-URL: #24635 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Noticed this the other day when testing the proposed
SKIP_XZ
feature. Runningmake
on AIX complains when runningmake
now because there is afind
with a-not
which is apparently not supported. It was first introduced in eebcb48, which is a year ago. It's not fatal, but it errors when you startmake
and lint-md won't work properly because of it.The error shows up in every run if you look at the console output, e.g. the latest one right now @ https://ci.nodejs.org/job/node-test-commit-aix/nodes=aix61-ppc64/19164/consoleFull:
Low priority I suppose. Over to the IBM folks.
The text was updated successfully, but these errors were encountered: