101-AR-flags-configure-update.patch 830 B

1234567891011121314151617181920212223
  1. From 42eacece82b6375a9f4bab3903a1a39f7d1dd579 Mon Sep 17 00:00:00 2001
  2. From: John Safranek <[email protected]>
  3. Date: Tue, 5 Mar 2019 09:26:30 -0800
  4. Subject: [PATCH] AR flags configure update In at least one environment the
  5. check for particular AR options was failing due to a bash script bug. Deleted
  6. an extra pair of parenthesis triggering an arithmetic statement when
  7. redundant grouping was desired.
  8. ---
  9. configure.ac | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. --- a/configure.ac
  12. +++ b/configure.ac
  13. @@ -15,7 +15,7 @@ AC_CONFIG_AUX_DIR([build-aux])
  14. : ${CFLAGS=""}
  15. # Test ar for the "U" option. Should be checked before the libtool macros.
  16. -xxx_ar_flags=$((ar --help) 2>&1)
  17. +xxx_ar_flags=$(ar --help 2>&1)
  18. AS_CASE([$xxx_ar_flags],[*'use actual timestamps and uids/gids'*],[: ${AR_FLAGS="Ucru"}])
  19. AC_PROG_CC