annotate src/gst-plugins-base-1-fix-sh.patch @ 1474:fc0c8dbcc6a8

portability fix for package gstreamer and plugins using upstream patches
author Tony Theodore <tonyt@logyst.com>
date Sun, 05 Dec 2010 22:14:01 +1100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1474
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
1 This file is part of mingw-cross-env.
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
2 See doc/index.html for further information.
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
3
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
4 This patch has been taken from:
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
5 http://cgit.freedesktop.org/gstreamer/common/commit/?id=9aa18ac420a19332ec215be14a6b966cc45948cf
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
6
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
7 diff --git a/m4/gst-package-release-datetime.m4 b/m4/gst-package-release-datetime.m4
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
8 index e0b9334..126919b 100644
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
9 --- a/common/m4/gst-package-release-datetime.m4
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
10 +++ b/common/m4/gst-package-release-datetime.m4
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
11 @@ -37,7 +37,7 @@ AC_DEFUN([AG_GST_SET_PACKAGE_RELEASE_DATETIME],
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
12 GST_PACKAGE_RELEASE_DATETIME=$1
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
13 else
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
14 dnl we assume the .doap file contains the date as YYYY-MM-DD
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
15 - YYYY_MM_DD=`. "${srcdir}/common/extract-release-date-from-doap-file" $3 $2`;
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
16 + YYYY_MM_DD=`sh "${srcdir}/common/extract-release-date-from-doap-file" $3 $2`;
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
17 if test "x$YYYY_MM_DD" != "x"; then
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
18 GST_PACKAGE_RELEASE_DATETIME=$YYYY_MM_DD
fc0c8dbcc6a8 portability fix for package gstreamer and plugins using upstream patches
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
19 else