diff options
author | Martin Storsjo <martin@martin.st> | 2011-07-06 16:41:44 +0300 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-07-10 20:47:02 -0400 |
commit | 7c517bf3501ae68c4a87c8a126955281ad2393b2 (patch) | |
tree | 29497859016f687f9c996a8700f542919813beda /gmodule | |
parent | 98b667d052b1274f80b8898a32d0753e9e2e5c1a (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 'gmodule')
-rw-r--r-- | gmodule/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gmodule/Makefile.am b/gmodule/Makefile.am index cebfcb46e..4eb5ed75f 100644 --- a/gmodule/Makefile.am +++ b/gmodule/Makefile.am @@ -8,7 +8,7 @@ AM_CPPFLAGS = \ -DG_DISABLE_DEPRECATED gmodule.def: gmodule.symbols - $(AM_V_GEN) (echo -e EXPORTS; $(CPP) -P - <$(srcdir)/gmodule.symbols | sed -e '/^$$/d' -e 's/^/ /') > gmodule.def + $(AM_V_GEN) (echo EXPORTS; $(CPP) -P - <$(srcdir)/gmodule.symbols | sed -e '/^$$/d' -e 's/^/ /') > gmodule.def EXTRA_DIST += \ makefile.msc.in \ |