Allow to check for source-compatibility in the -cmp-systems mode by specifying both -bin and -src options.
diff --git a/INSTALL b/INSTALL
index 155b759..ac9f8df 100644
--- a/INSTALL
+++ b/INSTALL
@@ -10,7 +10,7 @@
 
 Project:           ABI Compliance Checker (ACC)
 Version:           1.99.10
-Date:              2015-08-28
+Date:              2015-09-01
 
 
 This file explains how to install and setup environment
diff --git a/abi-compliance-checker.pl b/abi-compliance-checker.pl
index 213640c..d916752 100755
--- a/abi-compliance-checker.pl
+++ b/abi-compliance-checker.pl
@@ -22279,10 +22279,15 @@
     if($BinaryOnly and $SourceOnly)
     { # both --binary and --source
       # is the default mode
+        if(not $CmpSystems)
+        {
+            $BinaryOnly = 0;
+            $SourceOnly = 0;
+        }
+        
         $DoubleReport = 1;
         $JoinReport = 0;
-        $BinaryOnly = 0;
-        $SourceOnly = 0;
+        
         if($OutputReportPath)
         { # --report-path
             $DoubleReport = 0;