diff options
author | Juergen Daubert <jue@jue.li> | 2017-10-27 19:41:31 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2017-10-27 19:41:31 +0200 |
commit | 4b350f83645389c7577f5a12379fc9376f89943e (patch) | |
tree | 6a7e6e8247ccfc67433726f94dd646bfaf065151 /sshfs-fuse | |
parent | 14502c0169becf185f09c86e6159a3a7a17ddb7d (diff) | |
download | opt-4b350f83645389c7577f5a12379fc9376f89943e.tar.gz opt-4b350f83645389c7577f5a12379fc9376f89943e.tar.xz |
sshfs-fuse: fix build if $JOBS is not defined
Diffstat (limited to 'sshfs-fuse')
-rw-r--r-- | sshfs-fuse/.signature | 4 | ||||
-rw-r--r-- | sshfs-fuse/Pkgfile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sshfs-fuse/.signature b/sshfs-fuse/.signature index ebefa56ff..239bfd7f0 100644 --- a/sshfs-fuse/.signature +++ b/sshfs-fuse/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/bLkspq6K4/3b9sM6ZAEKloZQb7yZXE/SJiaw9qVy0kjeHw8jXztdeZqGgpt/EjqvTcD71NJvNe0q08cWA4Kpgo= -SHA256 (Pkgfile) = f0e151c16f0abb67b834695e39809352a9e4029af33afadb0d58e1c30ab7dc97 +RWSE3ohX2g5d/fn20h+Q5MeKdiEHY4MPBRhRwtVHeQm4mFpRBwRtQL9vB1oOCH9AHZmkVBXiplEkCp4kHIG8exVGCG2yBKRo6AU= +SHA256 (Pkgfile) = 5e920f34a1ca95ef1783c4426cc4f6c06f87c1c394153b0f3223f7a3d4029037 SHA256 (.footprint) = 55809a24ab7e2ee0ae7278618a24a3532806af781f07c1f9c651d089933d2527 SHA256 (sshfs-3.3.1.tar.xz) = de13bfe0eb5821a7d878f8dea3dc815edaee734418e0950c2732399acd4fb443 SHA256 (sshfs.1) = 42c34c125251a6e94336f2bc11eee3575cfd63cf20b2b69919c198b4ed33f2ce diff --git a/sshfs-fuse/Pkgfile b/sshfs-fuse/Pkgfile index b782e8bba..d39d2ab31 100644 --- a/sshfs-fuse/Pkgfile +++ b/sshfs-fuse/Pkgfile @@ -15,7 +15,7 @@ build() { mkdir build ; cd build meson .. --prefix /usr - DESTDIR=$PKG ninja -j $JOBS install + DESTDIR=$PKG ninja -j ${JOBS:-1} install install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1 } |