From 8a70ece28ce0438ee9dd94827b0de349d2fce5c8 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Thu, 8 Aug 2019 14:25:04 +0100 Subject: Corrected typo when fixing libffi's installation directory In the line where we checked if libffi is installed in `lib/' or `lib64/', there was a typo that lead to an incorrect result: we had forgot to add a `-f' to the second check. This is corrected with this commit. --- reproduce/software/make/python.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reproduce') diff --git a/reproduce/software/make/python.mk b/reproduce/software/make/python.mk index 6952ad0..bb535c0 100644 --- a/reproduce/software/make/python.mk +++ b/reproduce/software/make/python.mk @@ -247,7 +247,7 @@ $(ibidir)/libffi: $(tdir)/libffi-$(libffi-version).tar.gz $(call gbuild, $<, libffi-$(libffi-version), , \ CFLAGS="-DNO_JAVA_RAW_API=1") \ && if [ -f $(idir)/lib64/libffi.a ] \ - && [ ! $(idir)/lib/libffi.a ]; then \ + && ! [ -f $(idir)/lib/libffi.a ]; then \ cp $(idir)/lib64/libffi* $(ildir)/; \ fi \ && echo "Libffi $(libffi-version)" > $@ -- cgit v1.2.1