From da2cd34bdb3804a4af7ca8d074fee78ceda30262 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 28 Feb 2015 08:34:21 +0100 Subject: [PATCH] xbps-src: do not hardlink with -t, it won't work (doh). The reason is that pkgdb could be modified concurrently... not sure what I was thinking when I added that. --- xbps-src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbps-src b/xbps-src index 9da59faa85..c3c7a0f754 100755 --- a/xbps-src +++ b/xbps-src @@ -211,7 +211,7 @@ create_temporary_masterdir() { local tmpmdir=$(mktemp -d -q -p $XBPS_DISTDIR masterdir.XXXXXXXXX || exit 1) echo "=> Creating a temporary masterdir at $tmpmdir, please wait..." - cp -al $XBPS_MASTERDIR/* $tmpmdir/ + cp -a $XBPS_MASTERDIR/* $tmpmdir/ if [ $? -ne 0 ]; then echo "ERROR: failed to setup temporary masterdir $tmpmdir!" exit 1