summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Gjengset2015-10-10 23:51:08 -0400
committerJon Gjengset2015-10-10 23:51:08 -0400
commit95b03a01b7bd71810e105b78beb7a88e7e5d3168 (patch)
tree56ec31b66c808b11822393a19f2948f6b6dc0ec9
parent15a95097658cf474f9d2d3919c1061e8bddb2d55 (diff)
downloadaur-95b03a01b7bd71810e105b78beb7a88e7e5d3168.tar.gz
Fix another broken .o identification
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ce28cc133ca0..32d428121695 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = opensgx-git
pkgdesc = an open platform for Intel SGX
pkgver = r27.d9d2d68
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/sslab-gatech/opensgx/
arch = x86_64
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index c61751ccf584..a99db0f15e82 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Jon Gjengset <jon@thesquareplanet.com>
pkgname=opensgx-git
pkgver=r27.d9d2d68
-pkgrel=1
+pkgrel=2
pkgdesc="an open platform for Intel SGX"
arch=('x86_64')
url="https://github.com/sslab-gatech/opensgx/"
@@ -82,7 +82,7 @@ build() {
cd ..
msg2 "Make .os needed for .sgx compilation"
- make $(make -d demo/hello.sgx | awk '{print $2}' | sed "s/'//g" | grep '\.o' | grep -v demo | xargs)
+ make -dn demo/hello.sgx | grep 'Considering target file' | awk '{print $4}' | sed -e "s/'//g" -e 's/\.$//' | grep '\.o' | grep -v demo | xargs make
make sgx.lds
msg2 "Build userspace utilities"