You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I noticed that the file ./sources/configure is not POSIX compitable and uses arrays while it is marked to be run with the default shell of the system via a #! /bin/sh.
This causes compilation issues in some setups in which the default shell is not a modern shell such as zsh or bash (in my case my shell is dash).
This can be avoided by changning it to #!/bin/bash or making the file POSIX compatible.
Unfortunately I couldn't do that by myself since I'm not exactly sure how this configure gets generated or works in the first place xD
./configure: 13537: Syntax error: "(" unexpected
==> ERROR: A failure occurred in build().
Aborting...
That line is:
PYTHON_COMPAT=( python2.7 python2.6 )
So, yeah... that's all I could find out by my limited knowledge...
Sorry for bad English...
The text was updated successfully, but these errors were encountered:
Hello,
I noticed that the file
./sources/configure
is not POSIX compitable and uses arrays while it is marked to be run with the default shell of the system via a#! /bin/sh
.This causes compilation issues in some setups in which the default shell is not a modern shell such as
zsh
orbash
(in my case my shell isdash
).This can be avoided by changning it to
#!/bin/bash
or making the file POSIX compatible.Unfortunately I couldn't do that by myself since I'm not exactly sure how this
configure
gets generated or works in the first place xDThat line is:
So, yeah... that's all I could find out by my limited knowledge...
Sorry for bad English...
The text was updated successfully, but these errors were encountered: