Skip to content

Commit

Permalink
Add missing qoutes for meson scriplet
Browse files Browse the repository at this point in the history
  • Loading branch information
Begasus committed Jan 2, 2025
1 parent cd87dc3 commit eb348d9
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 eb348d9

Please sign in to comment.