Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
juur committed Nov 11, 2023
1 parent 9bee67b commit 5cb3e6a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,12 @@ done

# log all of the scripts output to config.log
if [ ${QUIET} = 0 ]; then
echo "Attempting to create FIFO"
FIFO="/tmp/$$.pipe"
mkfifo "${FIFO}"
# shellcheck disable=SC2064
trap "{ rm -f ${FIFO}; }" EXIT
echo "FIFO OK"
tee <"${FIFO}" &
exec 1>"${FIFO}"
else
Expand Down Expand Up @@ -134,8 +136,8 @@ TARGET=${TARGET:-}
# Location of default tools

PKG_CONFIG=${PKG_CONFIG:-pkg-config}
CC=${CC:-${TOOL}gcc}
CXX=${CXX:-${TOOL}g++}
CC=${CC:-${TOOL}cc}
CXX=${CXX:-${TOOL}c++}

# Predefined values, which should not be easily changed

Expand Down

0 comments on commit 5cb3e6a

Please sign in to comment.