summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Posch2024-06-06 13:57:17 +0200
committerFabian Posch2024-06-06 13:57:17 +0200
commitcd24a15c7c1afbf4318b266b47225a1eb30be43b (patch)
treebef290b089866601d23a6d07f459396fc8d9a812
parent773c9b91f673299d62b31c5672af44ca6025aabb (diff)
downloadaur-abc-git.tar.gz
fix typo in build command
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a9a85c269e6e..71febda92481 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = abc-git
pkgdesc = System for Sequential Logic Synthesis and Formal Verification
pkgver = 1.02.r5444.806a996
- pkgrel = 1
+ pkgrel = 2
url = https://people.eecs.berkeley.edu/~alanmi/abc/
arch = x86_64
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index c63cd93ab560..ff6cdf57d7c5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ _basever=1
_patchlvl=02
_gitversion=r5444.806a996
pkgver=${_basever}.${_patchlvl}.${_gitversion}
-pkgrel=1
+pkgrel=2
pkgdesc="System for Sequential Logic Synthesis and Formal Verification"
url="https://people.eecs.berkeley.edu/~alanmi/abc/"
arch=('x86_64' 'i686')
@@ -40,7 +40,7 @@ build() {
# we build abc with PIC enabled, so we don't have to compile it multiple times
# for the different targets
- make ABC_USE_PIC=1 abc libabc.so -j$(NPROC)
+ make ABC_USE_PIC=1 abc libabc.so -j$(nproc)
}
package() {