# HG changeset patch # User Christopher Rogers # Date 1289959501 0 # Node ID db069f80c0a04deeb1795c6200ce116f3070fad3 # Parent 5a6a835eb63f6279e842a4b8a999bc3ff259d40b Fixed linux receipt to not soft link to WOK/aufs/aufs-VERSION since it will cause problems with building. diff -r 5a6a835eb63f -r db069f80c0a0 linux/receipt --- a/linux/receipt Wed Nov 17 02:01:49 2010 +0000 +++ b/linux/receipt Wed Nov 17 02:05:01 2010 +0000 @@ -24,10 +24,7 @@ local _AUFSVER=`grep ^VERSION= $WOK/aufs/receipt | cut -d "=" -f2 | sed -e 's/"//g'` local AUFSDIR="aufs-${_AUFSVER}" TARBALL=$SOURCES_REPOSITORY/$AUFSDIR.tar.gz - if [ -d $WOK/aufs/$AUFSDIR ]; then - local AUFSDIR=$WOK/aufs/$AUFSDIR - ln -sf $AUFSDIR aufs-${_AUFSVER} - elif [ -f $TARBALL ]; then + if [ -f $TARBALL ]; then tar xzf $TARBALL cd $AUFSDIR && git checkout origin/aufs2 cd $WOK/$PACKAGE