# HG changeset patch # User Christopher Rogers # Date 1296161554 0 # Node ID ea3b957af24cc38594d29dd11681885b3351bc0d # Parent 0d7cf47babb31fc3579fde36ed32e3357c0a2c05 busybox: Fixed syntex. New tazwok doesn't like { make oldconfig && make} || return 1. diff -r 0d7cf47babb3 -r ea3b957af24c busybox/receipt --- a/busybox/receipt Thu Jan 27 12:11:34 2011 +0100 +++ b/busybox/receipt Thu Jan 27 20:52:34 2011 +0000 @@ -52,10 +52,10 @@ make install } || return 1 sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config - { make oldconfig && make } || return 1 + make oldconfig && make || return 1 mv busybox busybox-pam cp ../stuff/$PACKAGE-${VERSION%.*}.config-static .config - { make oldconfig && make } || return 1 + make oldconfig && make || return 1 mv busybox busybox-static }