如何使用 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,或者创建一个specfile。这 2 个包似乎已正确提取到 BUILD 目录,但输出rpmbuild -ba SPECS/nginx-with-rtmp.spec显示此错误:

。/配置--build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --program-prefix= --disable-dependency-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=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

./configure:错误:无效选项“--host=x86_64-redhat-linux-gnu”

错误:/var/tmp/rpm-tmp.h4kaTW (%build) 的退出状态错误

rpmbuild 似乎添加了./configure我没有要求的参数(所有内容都以粗体显示),这会破坏构建。它也覆盖了我的一些参数,例如prefix.

我如何告诉 rpmbuild 停止添加参数./configure?当我在./configure没有 rpmbuild 的情况下手动运行该命令时,我的构建工作正常。

答案1

如果您不想要(或不需要)%configure宏提供的标准参数,则不需要使用它:

%build
./configure ...
make

./代替%。)

你仍然应该使用适当的宏对于参数中的路径组件./configure

相关内容