# HG changeset patch # User Rob Landley # Date 1282376859 18000 # Node ID a23ee1b6b8de1e73ae7f5fbb2127a5c6160409a6 # Parent fd67d5a442c9033b5e3839a10e611d63b2ea3931 Break link (touch gets confused that /mnt is a read-only squashfs). diff -r fd67d5a442c9 -r a23ee1b6b8de sources/native-builds/gentoo-stage1-files/init --- a/sources/native-builds/gentoo-stage1-files/init Sat Aug 21 02:46:30 2010 -0500 +++ b/sources/native-builds/gentoo-stage1-files/init Sat Aug 21 02:47:39 2010 -0500 @@ -87,7 +87,10 @@ set_titlebar "rsync" && cp -sfR /mnt/rsync rsync && cd rsync && ./configure --prefix=/usr && -touch proto.h-tstamp && +# Break link and touch file, otherwise ./configure tries to recreate it +# which requires perl. +cat proto.h-tstamp > proto.h.new && +mv -f proto.h.new proto.h-tstamp && make -j $CPUS && make install &&