mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-20 17:30:07 +01:00
[perf] Beware $OS may not be set.
Avoid a warning by ensuring that the two strings in the equality check are not empty.
This commit is contained in:
parent
c44f2ab4d1
commit
8f56727986
1 changed files with 1 additions and 1 deletions
|
|
@ -189,7 +189,7 @@ git_setup
|
|||
# Build cairo-perf-diff-files if not available
|
||||
if [ ! -e $CAIRO_DIR/perf/cairo-perf-diff-files ]; then
|
||||
echo "Building cairo-perf-diff-files"
|
||||
if [ $OS = "Windows_NT" ]; then
|
||||
if [ "x$OS" = "xWindows_NT" ]; then
|
||||
make -f Makefile.win32 -C $CAIRO_DIR/perf/ cairo-perf-diff-files CFG=debug
|
||||
else
|
||||
make -C $CAIRO_DIR/perf/ cairo-perf-diff-files
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue