Skip to content

Commit

Permalink
Merge pull request #311 from Begasus/meson
Browse files Browse the repository at this point in the history
Add missing qoutes for meson scriplet
  • Loading branch information
Begasus authored Jan 4, 2025
2 parents cd87dc3 + eb348d9 commit f666118
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HaikuPorter/ShellScriptlets.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,10 @@ def getShellVariableSetters(shellVariables):
echo "error: invoking meson without --buildtype argument"
echo "note: you probably want --buildtype=release or --buildtype=debugoptimized"
exit 1
elif [[ "$*" = *buildtype=release* ]] && [ -n $DEBUG_INFO_PACKAGES ]; then
elif [[ "$*" = *buildtype=release* ]] && [ -n "$DEBUG_INFO_PACKAGES" ]; then
echo "error: invoking meson with --buildtype=release with debug info packages specified"
exit 1
elif [[ "$*" = *buildtype=debugoptimized* ]] && [ -z $DEBUG_INFO_PACKAGES ]; then
elif [[ "$*" = *buildtype=debugoptimized* ]] && [ -z "$DEBUG_INFO_PACKAGES" ]; then
echo "error: invoking meson with --buildtype=debugoptimized without debug info packages specified"
exit 1
fi
Expand Down

0 comments on commit f666118

Please sign in to comment.