commit 544aa75ab1a64b6d5e12c7180d998b891f584514 parent 6390826458c6dee85ab59b29d824b5d829ec6b4b Author: Yosl <yosl@seattlemesh.net> Date: Mon, 6 Jul 2020 22:58:11 -0400 Correct Copr output directory Diffstat:
| M | .copr/Makefile | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.copr/Makefile b/.copr/Makefile @@ -1,3 +1,4 @@ +outdir ?= $(pwd) srpm: dnf -y install libtool libtool-ltdl libtool-ltdl-devel autoconf make \ texinfo gettext gcc openssl libgcrypt-devel \ @@ -7,7 +8,6 @@ srpm: dbus authselect pulseaudio-libs sqlite-devel \ zbar-devel gnutls-dane glibc pkgconf libgsf chrpath rpmbuild gnunet-fedora.spec --ba --define "_rpmdir $(outdir)" - mv "$(outdir)"/* "$(RPM_OUTDIR)/" - dnf -y install $(RPM_OUTDIR)/gnunet-0.12.2-1~.fc31.x86_64.rpm \ - $(RPM_OUTDIR)/gnunet-debuginfo-0.12.2-1~.fc31.x86_64.rpm \ - $(RPM_OUTDIR)/gnunet-debugsource-0.12.2-1~.fc31.x86_64.rpm + dnf -y install $(outdir)/gnunet-0.12.2-1~.fc31.x86_64.rpm \ + $(outdir)/gnunet-debuginfo-0.12.2-1~.fc31.x86_64.rpm \ + $(outdir)/gnunet-debugsource-0.12.2-1~.fc31.x86_64.rpm