diff options
Diffstat (limited to 'desktop/vwm/vwm.SlackBuild')
-rw-r--r-- | desktop/vwm/vwm.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/vwm/vwm.SlackBuild b/desktop/vwm/vwm.SlackBuild index 7c45972556..54211f842f 100644 --- a/desktop/vwm/vwm.SlackBuild +++ b/desktop/vwm/vwm.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=vwm VERSION=2.0.2 -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: @@ -82,19 +82,19 @@ if [ $ARCH == "x86_64" ]; then sed -i '26s|/usr/lib/vwm/modules|/usr/lib64/vwm/modules|' ./vwm.h fi -make CFLAGS="$SLKCFLAGS" +make -j1 CFLAGS="$SLKCFLAGS" make install prefix=$PKG/usr libdir=$PKG/usr/lib${LIBDIRSUFFIX} # build and install the sysmon module (the vmwterm2 one is done with # the main installation) cd modules/sysmon - make CFLAGS="$SLKCFLAGS -I$PKG/usr/include" + make -j1 CFLAGS="$SLKCFLAGS -I$PKG/usr/include" make install prefix=$PKG/usr libdir=$PKG/usr/lib${LIBDIRSUFFIX} cd - # build and install the keycodes tool to determine codes for remapping # keystrokes in ~/.vwm/vwmrc -make keycode_tool +make -j1 keycode_tool cp -a keycodes/keycodes $PKG/usr/bin/ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ |