Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 855094c7 authored by Steven Moreland's avatar Steven Moreland
Browse files

Avoid dereferencing ANDROID_BUILD_TOP

We want to print to the user to use this variable, but it might
not be set in all environments where we run the build. Namely,
in sdk finalization CI.

Bug: 244456768
Test: N/A
Change-Id: I233e7d0ee6a7ed43760ad723fccd70ea97f7b806
parent 77c1d77b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -953,7 +953,7 @@ func sourceAbiDiff(ctx android.ModuleContext, inputDump android.Path, referenceD
			extraFlags = append(extraFlags, "-target-version", sourceVersion)
		}
	} else {
		errorMessage = "error: Please update ABI references with: $ANDROID_BUILD_TOP/development/vndk/tools/header-checker/utils/create_reference_dumps.py -l " + libName
		errorMessage = "error: Please update ABI references with: $$ANDROID_BUILD_TOP/development/vndk/tools/header-checker/utils/create_reference_dumps.py -l " + libName
		extraFlags = append(extraFlags, "-target-version", "current")
	}