diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2017-12-12 18:26:24 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2017-12-15 13:18:20 +0800 |
commit | 7c4a857012e489003fbc04f3800ce8c13158739a (patch) | |
tree | c46dc0bfb9a08f991818846a6ff29cfbf851eff2 /guix/guile-ssh | |
parent | 03f5771fde737761083d599f78b2e89332cab345 (diff) | |
download | copr-rpm-spec-7c4a857012e489003fbc04f3800ce8c13158739a.tar copr-rpm-spec-7c4a857012e489003fbc04f3800ce8c13158739a.tar.gz copr-rpm-spec-7c4a857012e489003fbc04f3800ce8c13158739a.tar.bz2 copr-rpm-spec-7c4a857012e489003fbc04f3800ce8c13158739a.tar.lz copr-rpm-spec-7c4a857012e489003fbc04f3800ce8c13158739a.tar.xz copr-rpm-spec-7c4a857012e489003fbc04f3800ce8c13158739a.tar.zst copr-rpm-spec-7c4a857012e489003fbc04f3800ce8c13158739a.zip |
Use configure, make_build, make_install macros
Diffstat (limited to 'guix/guile-ssh')
-rw-r--r-- | guix/guile-ssh/guile-ssh.spec | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/guile-ssh/guile-ssh.spec b/guix/guile-ssh/guile-ssh.spec index 3a5f8bb..26794c6 100644 --- a/guix/guile-ssh/guile-ssh.spec +++ b/guix/guile-ssh/guile-ssh.spec @@ -28,7 +28,7 @@ written in GNU Guile interpreter. It is built upon the libssh library. %build autoreconf -fi %configure --disable-rpath --disable-static -make %{?_smp_mflags} +%make_build %check @@ -39,7 +39,7 @@ sed -i 's|session.scm||' tests/Makefile %endif # try a few more times before failing for i in {1..24}; do - make %{?_smp_mflags} check && exit 0 + %{__make} %{?_smp_mflags} check && exit 0 done exit 1 @@ -80,7 +80,7 @@ fi %changelog * Mon Dec 11 2017 Ting-Wei Lan <lantw44@gmail.com> - 0.11.2-3 -- Use autosetup macro +- Use autosetup and make_build macros - Rename the source tarball * Mon Oct 16 2017 Ting-Wei Lan <lantw44@gmail.com> - 0.11.2-2 |