diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2021-04-13 22:45:02 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-04-17 11:47:39 +0700 |
commit | b7a556f54f8203f1752a0bcbe3212a87bf3df5be (patch) | |
tree | 44b817c577a926d78b5a2689236443eab198764a | |
parent | 41b23c1bfed538c363a4c387c9e2b1447df0ec15 (diff) | |
download | slackbuilds-b7a556f54f8203f1752a0bcbe3212a87bf3df5be.tar.gz |
audio/nas: Force single make job.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | audio/nas/README | 2 | ||||
-rw-r--r-- | audio/nas/nas.SlackBuild | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/audio/nas/README b/audio/nas/README index 4bf7d8cbf0..8fe2275e3d 100644 --- a/audio/nas/README +++ b/audio/nas/README @@ -2,7 +2,7 @@ The Network Audio System is a network transparent, client/server audio transport system. It can be described as the audio equivalent of an X server. -Note that some applications will likely need recompiling for nas +Note that some applications will likely need recompiling for nas support - mplayer for one. See the /etc/nas/nasd.conf.eg for an example config. diff --git a/audio/nas/nas.SlackBuild b/audio/nas/nas.SlackBuild index 1c99a3f482..f4f0e1ef4a 100644 --- a/audio/nas/nas.SlackBuild +++ b/audio/nas/nas.SlackBuild @@ -82,7 +82,8 @@ CXXFLAGS="$SLKCFLAGS" \ --build=$ARCH-slackware-linux cd .. -make CFLAGS="$SLKCFLAGS" World +# Multiple jobs fails +make -j1 World make install.man install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ |