commit | e5b12a313fdbbf9b628e920e40feb6613a9d6905 | [log] [tgz] |
---|---|---|
author | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | Thu May 02 18:29:28 2024 -0700 |
committer | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | Wed May 08 22:18:24 2024 -0700 |
tree | 8c43dc18ad95dad38eefef402979fdafc69ebc2d | |
parent | 46b6ba96d0b071e1616710c4d3463ea6d8a60ea7 [diff] |
Fix hard-coded bash path in gprofng When running 'make check', the default gprofng test suite creates a shell script for which it used a hardcoded shebang of '/usr/bin/bash' this script would not run if bash is in a different location, like /bin/bash This commit adds 'AC_PATH_PROG(BASH, bash)' to configure.ac so the installation path of bash is detected at configuration time. The configuration is propagated to the runtest command line where it is needed.