Make configure script POSIX compliant.
The script used a Bash built-in to store a multi-line string into a variable (read -d), which is not POSIX compliant. Fixed by using cat.
Showing
Please register or sign in to comment
The script used a Bash built-in to store a multi-line string into a variable (read -d), which is not POSIX compliant. Fixed by using cat.