Skip to content

Commit

Permalink
Merge pull request #3237 from BsAtHome/fix_configure-quote-escape
Browse files Browse the repository at this point in the history
Escaping double quotes must be inside double quotes
  • Loading branch information
andypugh authored Dec 22, 2024
2 parents 43bce69 + a058724 commit 1123be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ fe () {
# Fully expand argument. Example:
# ${datadir} -> ${datarootdir} -> ${prefix}/share -> /usr/local
case "$1" in
*\$*) eval fe \""$1"\" ;;
*\$*) eval fe "\"$1\"" ;;
*) echo "$1" ;;
esac
}
Expand Down

0 comments on commit 1123be8

Please sign in to comment.