diff options
author | Omar Pakker | 2020-04-15 12:35:36 +0000 |
---|---|---|
committer | Omar Pakker | 2020-04-15 12:35:36 +0000 |
commit | 33d3ac18517e162d4e2b4f8f2203523c0e5cc535 (patch) | |
tree | 87bd9c8a4b15ab73288f5efdcbf11ba629a5312b | |
parent | 6802251d6b2a43d284cac0e409fb94ca70ff256a (diff) | |
download | aur-33d3ac18517e162d4e2b4f8f2203523c0e5cc535.tar.gz |
Remove -O0 override, issue was fixed upstream.
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 7 |
2 files changed, 3 insertions, 6 deletions
@@ -1,6 +1,6 @@ pkgbase = looking-glass-git pkgdesc = An extremely low latency KVMFR (KVM FrameRelay) implementation for guests with VGA PCI Passthrough - pkgver = B1.r162.gb953b2b + pkgver = B1.r176.g80437c5 pkgrel = 1 epoch = 2 url = https://looking-glass.hostfission.com @@ -7,7 +7,7 @@ pkgname=("${_pkgname}-git" "${_pkgname}-host-git" "obs-plugin-${_pkgname}-git") epoch=2 -pkgver=B1.r162.gb953b2b +pkgver=B1.r176.g80437c5 pkgrel=1 pkgdesc="An extremely low latency KVMFR (KVM FrameRelay) implementation for guests with VGA PCI Passthrough" url="https://looking-glass.hostfission.com" @@ -47,10 +47,7 @@ build() { cd "${srcdir}/${_pkgname}" for b in {client,c-host,obs}; do pushd "${b}" - # CFLAGS for https://github.com/gnif/PureSpice/issues/1 - cmake -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_C_FLAGS="-O0" \ - . + cmake -DCMAKE_INSTALL_PREFIX=/usr . make popd done |