aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Cohen <arthur.cohen@embecosm.com>2022-11-30 11:26:20 +0100
committerArthur Cohen <arthur.cohen@embecosm.com>2022-12-05 14:52:09 +0100
commit3df7703a627ed3a070c91cf2e3b92ec993684531 (patch)
treeb677e3574aad1afca54adb4c029e18910f47f368
parent9b6cd2601d69bade02b150d24567596dc3e2d2c7 (diff)
downloadgcc-3df7703a627ed3a070c91cf2e3b92ec993684531.zip
gcc-3df7703a627ed3a070c91cf2e3b92ec993684531.tar.gz
gcc-3df7703a627ed3a070c91cf2e3b92ec993684531.tar.bz2
fix makefile syntax error
-rw-r--r--gcc/rust/Make-lang.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in
index f2234e3..656c46d 100644
--- a/gcc/rust/Make-lang.in
+++ b/gcc/rust/Make-lang.in
@@ -52,7 +52,7 @@ GCCRS_D_OBJS = \
RUST_CXXFLAGS = $(CXXFLAGS)
# If the file exists, we're bootstrapping. Set a specific flag for the session manager.
-ifneq ($(wildcard ../stage_current)),)
+ifneq ($(wildcard ../stage_current),)
SESSION_FLAGS = -DRUST_BOOTSTRAP_BUILD
endif