From 63c832a4feb19c945d9e1f0c83cb75f2044f291a Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Wed, 24 Jul 2019 09:24:48 +0100 Subject: spec: invoke ./configure with arguments Commit fd26c1a2f0eb ("configure: move directory options to ./configure") moved --prefix=PREFIX and other directory options to ./configure. Invoke ./configure with these options instead of passing them to the makefile. Signed-off-by: Stefan Hajnoczi Signed-off-by: Jens Axboe --- liburing.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/liburing.spec b/liburing.spec index 61afac8..189a16a 100644 --- a/liburing.spec +++ b/liburing.spec @@ -25,12 +25,13 @@ for the Linux-native io_uring. %setup %build +./configure --prefix=/usr --libdir=/%{_libdir} --mandir=/usr/share/man make %install [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT prefix=/usr libdir=/%{_libdir} mandir=/usr/share/man +make install DESTDIR=$RPM_BUILD_ROOT %clean [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT -- cgit