lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 03 Apr 2018 19:30:23 -0400
From:   bjornpagen@...il.com
To:     "linux-ext4@...r.kernel.org" <linux-ext4@...r.kernel.org>
Subject: Use @AR@ instead of hardcoded 'ar'

Hey all,

e2fsprogs currently hardcodes 'ar' in one of it's makefiles. This is
fixed with this patch:

Upstream: no
Author: Bjorn Pagen <bjornpagen@...il.com>
Reason: e2fsprogs does not merge, calls blacklisted 'ar'
--
diff --git a/intl/Makefile.in.old b/intl/Makefile.in
index 66d7512..3024494 100644
--- a/intl/Makefile.in
+++ b/intl/Makefile.in
@@ -81,7 +81,7 @@ mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
 
 l = @INTL_LIBTOOL_SUFFIX_PREFIX@
 
-AR = ar
+AR = @AR@
 CC = @CC@
 LIBTOOL = @LIBTOOL@
 RANLIB = @RANLIB@

--
Thanks,
Bjorn Pagen

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ