blob: f7f2775f401ac564dbd39374b6401559f4b7cddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
This file is part of mingw-cross-env.
See doc/index.html for further information.
This patch has been taken from:
http://cgit.freedesktop.org/gstreamer/common/commit/?id=9aa18ac420a19332ec215be14a6b966cc45948cf
diff --git a/m4/gst-package-release-datetime.m4 b/m4/gst-package-release-datetime.m4
index e0b9334..126919b 100644
--- a/common/m4/gst-package-release-datetime.m4
+++ b/common/m4/gst-package-release-datetime.m4
@@ -37,7 +37,7 @@ AC_DEFUN([AG_GST_SET_PACKAGE_RELEASE_DATETIME],
GST_PACKAGE_RELEASE_DATETIME=$1
else
dnl we assume the .doap file contains the date as YYYY-MM-DD
- YYYY_MM_DD=`. "${srcdir}/common/extract-release-date-from-doap-file" $3 $2`;
+ YYYY_MM_DD=`sh "${srcdir}/common/extract-release-date-from-doap-file" $3 $2`;
if test "x$YYYY_MM_DD" != "x"; then
GST_PACKAGE_RELEASE_DATETIME=$YYYY_MM_DD
else
|