-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Target make file contains syntax which is not interpreted correctly on AIX #3108
Comments
What is |
Hi, |
Hi, |
Hi @ritvick /bin/sh: syntax error at line 1 : `(' unexpected What shell are you using? AIX defaults to use ksh but you want to use bash instead. |
We are using the default shell which AIX ships with which is /bin/sh We have also tried getting into /bin/bash and then running node-gyp, for some reason at build step it still picks up /bin/sh We have also tried to override it by putting SHELL=/bin/bash before the node-gyp command but it still picks up /bin/sh |
Is there a way to configure the shell to use something other than Could try a couple other options:
|
Target make file contains syntax which is not interpreted correctly on AIX
The line 279 is " $(call do_cmd,solink_module)" in the generated make file
A few lines above it are:
NOTE: This works on all the other platforms linux / windows on pc, amd, arm, mac, graviton. It complains specifically for AIX.
The text was updated successfully, but these errors were encountered: