Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eglib
diff options
context:
space:
mode:
authorGeoff Norton <grompf@sublimeintervention.com>2009-07-15 21:02:30 +0400
committerGeoff Norton <grompf@sublimeintervention.com>2009-07-15 21:02:30 +0400
commite0d3afd9ac525e83c0e79a9f720eb0aa9a8b0e65 (patch)
tree666da45e384e6976397c192dc300aa6ad01e033a /eglib
parent4f0c6b7f94d9a7bbc51823a131c597bb3d8bb2f0 (diff)
fix a typo
svn path=/trunk/mono/; revision=137974
Diffstat (limited to 'eglib')
-rw-r--r--eglib/configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/eglib/configure.ac b/eglib/configure.ac
index 6ec83365415..a32caf55cfa 100644
--- a/eglib/configure.ac
+++ b/eglib/configure.ac
@@ -7,8 +7,7 @@ AM_MAINTAINER_MODE
AC_PROG_CC
AM_PROG_LIBTOOL
-CFLAGS='-g -O0 -D_GNU_SOURCE'
-AC_SUBST(CFLAGS)
+CFLAGS="$CFLAGS -g -O0 -D_GNU_SOURCE"
GNUC_PRETTY=
GNUC_UNUSED=
BREAKPOINT="G_STMT_START { raise (SIGTRAP); } G_STMT_END"
@@ -44,10 +43,11 @@ esac
case $target in
arm*-darwin*)
- CFLAGS="$CLAFGS -U_FORTIFY_SOURCE"
+ CFLAGS="$CFLAGS -U_FORTIFY_SOURCE"
;;
esac
+AC_SUBST(CFLAGS)
AC_SUBST(PATHSEP)
AC_SUBST(SEARCHSEP)
AC_SUBST(OS)