diff options
author | Benjamin Barenblat <bbaren@google.com> | 2020-05-22 15:25:14 -0400 |
---|---|---|
committer | Benjamin Barenblat <bbaren@google.com> | 2020-05-22 15:25:14 -0400 |
commit | a06ed1c04f84a5ee864c890f05c30283aea486a9 (patch) | |
tree | 65e9c37019bbb4590c896e0f926d41bb8e71c305 | |
parent | 73ea0ababad4845e211121bed2e046d96299116d (diff) |
Pass -ffile-prefix-map during the build
Abseil uses __FILE__ in error messages. Ensure that that macro expands
to the same value on every builder by passing -ffile-prefix-map to GCC.
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index ed4e354a..c6c94e3c 100755 --- a/debian/rules +++ b/debian/rules @@ -13,7 +13,7 @@ # License for the specific language governing permissions and limitations under # the License. -export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow +export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow reproducible=+fixfilepath %: dh $@ |