forked from pool/virtualbox
a065251386
VirtualBox 7.0.18 with Oracle's 15.6 patches and all obsolete patches removed OBS-URL: https://build.opensuse.org/request/show/1186452 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=742
21 lines
716 B
Diff
21 lines
716 B
Diff
Index: VirtualBox-7.0.14/configure
|
|
===================================================================
|
|
--- VirtualBox-7.0.14.orig/configure
|
|
+++ VirtualBox-7.0.14/configure
|
|
@@ -475,8 +475,13 @@ check_gcc()
|
|
log_failure "cannot execute '$CXX -dumpversion'"
|
|
fail really
|
|
fi
|
|
- cc_maj=`echo $cc_ver|cut -d. -f1`
|
|
- cc_min=`echo $cc_ver|cut -d. -f2`
|
|
+ if echo $cc_ver | grep -q '\.'; then
|
|
+ cc_maj=`echo $cc_ver|cut -d. -f1`
|
|
+ cc_min=`echo $cc_ver|cut -d. -f2`
|
|
+ else
|
|
+ cc_maj=$cc_ver
|
|
+ cc_min=0
|
|
+ fi
|
|
if [ "x$cc_ver" != "x$cxx_ver" ]; then
|
|
log_failure "gcc version $cc_ver does not match g++ version $cxx_ver"
|
|
fail really
|