diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2007-07-13 16:53:45 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2007-07-13 16:53:45 +0000 |
commit | fb4b30ebbec59a8944cacae5fb5cf40bff5dfcaa (patch) | |
tree | 6b0c55d1b7e8f78ceff2868306d91d83a7d277ec | |
parent | 5167bced491ffe62251c62d6c5e7b9a7541e97e5 (diff) |
m4/gst-feature.m4: If we want to use 'echo -e', call /bin/echo instead of the shell's since -e is a bash extension, a...
Original commit message from CVS:
* m4/gst-feature.m4:
If we want to use 'echo -e', call /bin/echo instead of the shell's
since -e is a bash extension, and our /bin/sh might not be being
provided by bash.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | m4/gst-feature.m4 | 16 |
2 files changed, 15 insertions, 8 deletions
@@ -1,3 +1,10 @@ +2007-07-13 Jan Schmidt <thaytan@mad.scientist.com> + + * m4/gst-feature.m4: + If we want to use 'echo -e', call /bin/echo instead of the shell's + since -e is a bash extension, and our /bin/sh might not be being + provided by bash. + 2007-07-01 Thomas Vander Stichele <thomas at apestaart dot org> * po.mak: diff --git a/m4/gst-feature.m4 b/m4/gst-feature.m4 index e0fb6b6..510d228 100644 --- a/m4/gst-feature.m4 +++ b/m4/gst-feature.m4 @@ -256,7 +256,7 @@ dnl GST_PLUGINS_NO, and BUILD_EXTERNAL AC_DEFUN([AG_GST_OUTPUT_PLUGINS], [ echo "configure: *** Plug-ins without external dependencies that will be built:" -( for i in $GST_PLUGINS_SELECTED; do echo -e '\t'$i; done ) | sort +( for i in $GST_PLUGINS_SELECTED; do /bin/echo -e '\t'$i; done ) | sort echo echo "configure: *** Plug-ins without external dependencies that will NOT be built:" @@ -265,7 +265,7 @@ echo "configure: *** Plug-ins without external dependencies that will NOT be bui *$i*) ;; *) - echo -e '\t'$i + /bin/echo -e '\t'$i ;; esac done ) | sort @@ -274,12 +274,12 @@ echo if test "x$BUILD_EXTERNAL" = "xno"; then echo "configure: *** No plug-ins with external dependencies will be built" else - echo -n "configure: *** Plug-ins with dependencies that will be built:" - echo -e "$GST_PLUGINS_YES" | sort - echo - echo -n "configure: *** Plug-ins with dependencies that will NOT be built:" - echo -e "$GST_PLUGINS_NO" | sort - echo + /bin/echo -n "configure: *** Plug-ins with dependencies that will be built:" + /bin/echo -e "$GST_PLUGINS_YES" | sort + /bin/echo + /bin/echo -n "configure: *** Plug-ins with dependencies that will NOT be built:" + /bin/echo -e "$GST_PLUGINS_NO" | sort + /bin/echo fi ]) |