[Pkg-virtualbox-commits] [virtualbox] 01/01: Add patch for gcc detection code
Gianfranco Costamagna
locutusofborg at moszumanska.debian.org
Mon Aug 7 10:34:11 UTC 2017
This is an automated email from the git hooks/post-receive script.
locutusofborg pushed a commit to branch master
in repository virtualbox.
commit 2187350e3aabfe5f872c146d4cce361f8361b00b
Author: Gianfranco Costamagna <costamagnagianfranco at yahoo.it>
Date: Mon Aug 7 12:32:55 2017 +0200
Add patch for gcc detection code
---
debian/changelog | 6 ++++++
debian/patches/cherry-pick-68274.patch | 26 ++++++++++++++++++++++++++
debian/patches/series | 1 +
3 files changed, 33 insertions(+)
diff --git a/debian/changelog b/debian/changelog
index 31069b4..8f6368a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+virtualbox (5.1.26-dfsg-2) unstable; urgency=medium
+
+ * Cherry-pick gcc warning fix 68274
+
+ -- Gianfranco Costamagna <locutusofborg at debian.org> Mon, 07 Aug 2017 12:09:45 +0200
+
virtualbox (5.1.26-dfsg-1) unstable; urgency=medium
* New upstream version 5.1.26-dfsg
diff --git a/debian/patches/cherry-pick-68274.patch b/debian/patches/cherry-pick-68274.patch
new file mode 100644
index 0000000..37581f1
--- /dev/null
+++ b/debian/patches/cherry-pick-68274.patch
@@ -0,0 +1,26 @@
+Origin: https://www.virtualbox.org/changeset?reponame=vbox&new=68274%40trunk%2Fconfigure&old=68031%40trunk%2Fconfigure
+--- virtualbox-5.1.26-dfsg.orig/configure
++++ virtualbox-5.1.26-dfsg/configure
+@@ -417,18 +417,18 @@ check_gcc()
+ {
+ test_header gcc
+ if check_avail "$CC" CC really; then
+- cc_ver=`$CC -dumpfullversion` 2>/dev/null
++ cc_ver=`$CC -dumpfullversion 2>/dev/null`
+ if [ $? -ne 0 ]; then
+- cc_ver=`$CC -dumpversion` 2>/dev/null
++ cc_ver=`$CC -dumpversion 2>/dev/null`
+ fi
+ if [ $? -ne 0 ]; then
+ log_failure "cannot execute '$CC -dumpversion'"
+ fail really
+ fi
+ if check_avail "$CXX" CXX really; then
+- cxx_ver=`$CXX -dumpfullversion` 2>/dev/null
++ cxx_ver=`$CXX -dumpfullversion 2>/dev/null`
+ if [ $? -ne 0 ]; then
+- cxx_ver=`$CXX -dumpversion` 2>/dev/null
++ cxx_ver=`$CXX -dumpversion 2>/dev/null`
+ fi
+ if [ $? -ne 0 ]; then
+ log_failure "cannot execute '$CXX -dumpversion'"
diff --git a/debian/patches/series b/debian/patches/series
index f62325e..8ce368d 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -16,3 +16,4 @@
36-fix-vnc-version-string.patch
new-xorg-1.19.patch
37-python-3.6-support.patch
+cherry-pick-68274.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-virtualbox/virtualbox.git
More information about the Pkg-virtualbox-commits
mailing list