From 0dbe539403fc0da3c3d0b1a6636bc7c9d0e19484 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 11 Jun 2015 16:26:11 +0100 Subject: pulseaudio: fix version when building inside a dirty git checkout If the build directory is a subdirectory of a git clone, and that git clone is dirty, PulseAudio will build thinking it's version is 6.0-dirty. Fix git-version-gen so it doesn't do the git checks for tarball builds. Signed-off-by: Ross Burton --- .../pulseaudio/fix-git-version-gen.patch | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta/recipes-multimedia/pulseaudio/pulseaudio/fix-git-version-gen.patch (limited to 'meta/recipes-multimedia/pulseaudio/pulseaudio') diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio/fix-git-version-gen.patch b/meta/recipes-multimedia/pulseaudio/pulseaudio/fix-git-version-gen.patch new file mode 100644 index 0000000000..ed94250401 --- /dev/null +++ b/meta/recipes-multimedia/pulseaudio/pulseaudio/fix-git-version-gen.patch @@ -0,0 +1,24 @@ +git-version-gen gets confused if a tarball is being built inside a git directory +(ie your build directory is a subdirectory of a poky clone), and ends up calling +the release 6.0-dirty. Add a shortcut exit so if a tarball is detected it +doesn't attempt to look at the git status. + +Upstream-Status: Submitted (https://bugs.freedesktop.org/show_bug.cgi?id=90936) +Signed-off-by: Ross Burton + +diff --git a/git-version-gen b/git-version-gen +index 7546884..079b93e 100755 +--- a/git-version-gen ++++ b/git-version-gen +@@ -84,7 +84,10 @@ then + v=`cat $tarball_version_file` || exit 1 + case $v in + *$nl*) v= ;; # reject multi-line output +- [0-9]*) ;; ++ [0-9]*) ++ echo "$v" | tr -d '\012' ++ exit 0 ++ ;; + *) v= ;; + esac + test -z "$v" \ -- cgit 1.2.3-korg