From 3f5ad0044a3cd72fabe2c40012bae4927d02b111 Mon Sep 17 00:00:00 2001 From: Slava Barinov Date: Mon, 23 May 2016 18:07:13 +0300 Subject: [PATCH] Fixed %configure call Since %configure is rpm macro it's expanded even inside comment and therefore ./configure script is called twice. And leaving backslash at end of comment line joins next line to comment, so the configure has been called twice only because it's an rpm macro. Change-Id: I30f5d55427102fc9fd406507ffb182f5bc5b1d37 Signed-off-by: Slava Barinov --- packaging/nettle.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/nettle.spec b/packaging/nettle.spec index 6e53e35..746f4a9 100644 --- a/packaging/nettle.spec +++ b/packaging/nettle.spec @@ -57,11 +57,11 @@ This package contains a few command-line tools to perform cryptographic operations using the nettle library. %prep -%setup -q +%setup -q cp %{SOURCE1001} . %build -#%configure --disable-static \ +#configure --disable-static %configure --enable-shared make %{?_smp_mflags} -- 2.7.4