# HG changeset patch # User Rob Landley # Date 1194659806 21600 # Node ID 559603be1678f5dfc6668287e7ec83644e404dad # Parent 1d853842db62bd456744e5498f72e1bccdaad166 Do hard links when creating temporary linux directory. (Patch breaks 'em.) diff -r 1d853842db62 -r 559603be1678 make/functions.sh --- a/make/functions.sh Fri Nov 09 19:56:05 2007 -0600 +++ b/make/functions.sh Fri Nov 09 19:56:46 2007 -0600 @@ -238,9 +238,9 @@ rm -rf "$LNXDIR"/temp && mkdir "$LNXDIR"/temp && # Building out of tree conflicts with patching the files, so copy. - cp -r "$LNXDIR"/hg/* "$LNXDIR"/temp && + cp -lr "$LNXDIR"/hg/* "$LNXDIR"/temp && ( - cd "$LNXDIR"/hg + cd "$LNXDIR"/temp # Apply patches for i in "$WEBDIR"/make/patches/*.patch do