diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2022-04-22 15:28:08 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2022-04-22 15:28:08 +0200 |
commit | 472e7aed3bcf1a0a42143bff8dae397b04ec71cb (patch) | |
tree | 4f710075fc5b99b4d47be1cca3c0602a01b9f758 | |
parent | 72f1235a186e191fa200522735e3335fc469be29 (diff) | |
download | amtterm-472e7aed3bcf1a0a42143bff8dae397b04ec71cb.tar.gz |
enable ssl in rpm builds
-rw-r--r-- | amtterm.spec | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/amtterm.spec b/amtterm.spec index c21689a..ffc2e08 100644 --- a/amtterm.spec +++ b/amtterm.spec @@ -13,6 +13,7 @@ BuildRequires: desktop-file-utils BuildRequires: pkgconfig(gtk+-3.0) BuildRequires: pkgconfig(gdk-3.0) BuildRequires: pkgconfig(vte-2.91) +BuildRequires: pkgconfig(gnutls) %description Serial-over-lan (sol) client for Intel AMT. @@ -25,10 +26,10 @@ about and remotely control AMT managed computers. %build export CFLAGS="%{optflags}" -make prefix=/usr +make USE_GNUTLS=1 prefix=/usr %install -make prefix=/usr DESTDIR=%{buildroot} STRIP="" install +make USE_GNUTLS=1 prefix=/usr DESTDIR=%{buildroot} STRIP="" install desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ \ %{buildroot}/%{_datadir}/applications/gamt.desktop |