wok rev 8239

busybox: Fixed syntex. New tazwok doesn't like { make oldconfig && make} || return 1.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Jan 27 20:52:34 2011 +0000 (2011-01-27)
parents 0d7cf47babb3
children fcd9680971b1
files busybox/receipt
line diff
     1.1 --- a/busybox/receipt	Thu Jan 27 12:11:34 2011 +0100
     1.2 +++ b/busybox/receipt	Thu Jan 27 20:52:34 2011 +0000
     1.3 @@ -52,10 +52,10 @@
     1.4      make install
     1.5      } || return 1
     1.6      sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config
     1.7 -    { make oldconfig && make } || return 1
     1.8 +    make oldconfig && make || return 1
     1.9      mv busybox busybox-pam
    1.10      cp ../stuff/$PACKAGE-${VERSION%.*}.config-static .config
    1.11 -    { make oldconfig && make } || return 1
    1.12 +    make oldconfig && make || return 1
    1.13      mv busybox busybox-static
    1.14  }
    1.15