# HG changeset patch # User Christopher Rogers # Date 1300240392 0 # Node ID 62789b5664363900c8bf9f9283fd5c9ddc50a8c9 # Parent 59e6ea4942519106c41586b3e7a994b5d6758377 Fixed busybox /etc/init.d softlinks problem. diff -r 59e6ea494251 -r 62789b566436 busybox/receipt --- a/busybox/receipt Tue Mar 15 21:05:24 2011 +0000 +++ b/busybox/receipt Wed Mar 16 01:53:12 2011 +0000 @@ -18,7 +18,7 @@ while read file; do [ -f done.$file ] && continue echo "Apply $file..." - patch -p1 < ../stuff/$PACKAGE-${VERSION%.*}-$file || return 1 + patch -p1 < $stuff/$PACKAGE-${VERSION%.*}-$file || return 1 touch done.$file done <