mirror of
https://github.com/containers/podman.git
synced 2026-03-05 15:29:57 -05:00
Also address review concerns in pr#18675. [NO NEW TESTS NEEDED] Co-authored-by: Chris Evich <cevich@redhat.com> Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
11 lines
293 B
Makefile
11 lines
293 B
Makefile
.PHONY: rpm
|
|
rpm:
|
|
$(shell /usr/bin/bash ./update-spec-version.sh)
|
|
spectool -g podman.spec
|
|
rpmbuild -ba \
|
|
--define '_sourcedir $(shell pwd)' \
|
|
--define '_rpmdir %{_sourcedir}/RPMS' \
|
|
--define '_srcrpmdir %{_sourcedir}/SRPMS' \
|
|
--define '_builddir %{_sourcedir}/BUILD' \
|
|
podman.spec
|