rpmbuild를 사용하여 ./configure args를 지정하는 방법은 무엇입니까?

rpmbuild를 사용하여 ./configure args를 지정하는 방법은 무엇입니까?

nginx와 nginx rtmp 모듈을 사용하여 rpm을 구축하려고 합니다.

nginx 소스 tar.gz 및 rtmp tar.gz를 가져와 SOURCES 디렉토리에 배치했습니다.

그런 다음 이 사양 파일을 만들었습니다.

Name:       nginx
Version:    1.16.1
Release:    1%{?dist}
Summary:    Nginx with RTMP module

License:    GPLv3 Probably
URL:        nginx.com
Source0:    nginx-1.16.1.tar.gz
Source1:    nginx-rtmp-module.tar.gz


BuildRequires:  openssl-devel libxml2-devel libxslt-devel gd-devel perl-ExtUtils-Embed geoip-devel gperftools-devel pcre-devel zlib-devel
Requires: bash glibc glibc glibc openssl-libs openssl-libs openssl-libs glibc glibc pcre gperftools-libs glibc glibc openssl-libs openssl-libs zlib nginx-all-modules nginx-filesystem nginx-filesystem openssl pcre pcre centos-indexhtml glibc glibc centos-logos systemd 

%description
Nginx 1.16.1 with RTMP module

%prep
%setup -q
%setup -q -T -D -a 1


%build
%configure --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E' --add-module=./nginx-rtmp-module
make 


%install
make install

rpmbuild를 사용하여 RPM을 만들거나 사양 파일을 만드는 것은 이번이 처음입니다. 2개의 패키지가 BUILD 디렉터리에 올바르게 추출된 것으로 보이지만 출력에는 rpmbuild -ba SPECS/nginx-with-rtmp.spec다음 오류가 표시됩니다.

. /구성--build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --program-prefix= --disable-dependent-tracking --prefix=/usr --exec-prefix=/usr - -bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/ usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info--prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var /lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi -- http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_auth_request_module --with-http_ssl_module --with- http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with -http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail= 동적 --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=동적 --with-stream_ssl_module --with-google_perftools_module --with-debug '--with-cc-opt=- O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fExceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat /redhat-hardened-cc1 -m64 -mtune=generic' '--with-ld-opt=-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,- E' --추가 모듈=./nginx-rtmp-모듈

./configure: 오류: 잘못된 옵션 "--host=x86_64-redhat-linux-gnu"

오류: /var/tmp/rpm-tmp.h4kaTW(%build)에 대한 잘못된 종료 상태

./configurerpmbuild가 내가 요청하지 않은 매개변수를 추가하는 것 같습니다 (모든 항목이 굵게 표시됨). 이로 인해 빌드가 중단됩니다. 또한 prefix.

매개변수 추가를 중지하도록 rpmbuild에 어떻게 지시합니까 ./configure? rpmbuild 없이 수동으로 명령을 실행 하면 ./configure빌드가 제대로 작동합니다.

답변1

매크로가 제공하는 표준 인수를 원하지 않거나 필요하지 않으면 %configure이를 사용할 필요가 없습니다.

%build
./configure ...
make

( ./바꾸다 %.)

당신은 여전히 ​​사용해야합니다적절한 매크로매개변수의 경로 구성요소에 대한 것입니다 ./configure.

관련 정보