From b9ec4d1a679f1485c9c109969e891269627d9f7f Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Tue, 13 Aug 2013 02:10:01 -0400 Subject: Prevent *.pyo and *.pyc multilib problems Differences in the python byte code fails in a build validation (rpmdiff) done on difference architecture of the same package. This patch: 1) Ensures that timestamps of generated *.pyo and *.pyc files match 2) Python integer literals greater or equal 2^32 and lower than 2^64 are converted to long right away to prevent different type of the integer on architectures with different size of int https://fedorahosted.org/freeipa/ticket/3858 --- ipa-client/configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'ipa-client/configure.ac') diff --git a/ipa-client/configure.ac b/ipa-client/configure.ac index 880e9289f..bb4ac854b 100644 --- a/ipa-client/configure.ac +++ b/ipa-client/configure.ac @@ -22,6 +22,7 @@ AC_HEADER_STDC AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) AC_SUBST(VERSION) +AC_SUBST([INSTALL_DATA], ['$(INSTALL) -m 644 -p']) dnl --------------------------------------------------------------------------- dnl - Check for KRB5 -- cgit