backuptool: Do not set ADDOND_VERSION=2 for a-only

There are addon.d scripts that rely on the value of ADDOND_VERSION
to determine if they're being called from a-only vs a/b backuptool.

If they declare ADDOND_VERSION=3, they shall stop doing that;
otherwise offer them the same environment, that is unset ADDOND_VERSION
for a-only backuptool.

Change-Id: I1be21eda2e6ec9837b3080bb5e7fbe5241318eaa
diff --git a/prebuilt/common/bin/backuptool.sh b/prebuilt/common/bin/backuptool.sh
index c559f7c..24647bf 100755
--- a/prebuilt/common/bin/backuptool.sh
+++ b/prebuilt/common/bin/backuptool.sh
@@ -69,7 +69,7 @@
       if [ $v -ge 3 ]; then
         $script $stage
       else
-        ADDOND_VERSION=2 $script $stage
+        ADDOND_VERSION= $script $stage
       fi
     done
   done