summaryrefslogtreecommitdiff
path: root/gobject
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2011-07-06 16:41:44 +0300
committerMatthias Clasen <mclasen@redhat.com>2011-07-10 20:47:02 -0400
commit7c517bf3501ae68c4a87c8a126955281ad2393b2 (patch)
tree29497859016f687f9c996a8700f542919813beda /gobject
parent98b667d052b1274f80b8898a32d0753e9e2e5c1a (diff)
Don't needlessly use "echo -e"
The -e parameter to echo isn't recognized by echo in POSIX sh, but isn't needed when no escaped characters need to be interpreted. This fixes building glib with a mingw cross compiler on Mac OS X. https://bugzilla.gnome.org/show_bug.cgi?id=654085
Diffstat (limited to 'gobject')
-rw-r--r--gobject/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject/Makefile.am b/gobject/Makefile.am
index af090d66d..10b0e2f34 100644
--- a/gobject/Makefile.am
+++ b/gobject/Makefile.am
@@ -22,7 +22,7 @@ AM_CPPFLAGS = \
-DGOBJECT_COMPILATION
gobject.def: gobject.symbols
- $(AM_V_GEN) (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 -DALL_FILES - <$(srcdir)/gobject.symbols | $(SED) -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g' | sort) > gobject.def
+ $(AM_V_GEN) (echo EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 -DALL_FILES - <$(srcdir)/gobject.symbols | $(SED) -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g' | sort) > gobject.def
if OS_LINUX
if HAVE_GNUC_VISIBILITY