From 179c07cc302d4631ca569e484973b6c4f7dd65a0 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 13 Aug 2014 22:17:10 +0200 Subject: [PATCH] common/hooks: use cp instead of ln --- common/hooks/pre-pkg/01-xdelta_repolist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/pre-pkg/01-xdelta_repolist.sh b/common/hooks/pre-pkg/01-xdelta_repolist.sh index c4cb0d5b518..b12d076ef70 100644 --- a/common/hooks/pre-pkg/01-xdelta_repolist.sh +++ b/common/hooks/pre-pkg/01-xdelta_repolist.sh @@ -5,6 +5,6 @@ hook() { # create links to preserve old versions of repodata find $XBPS_REPOSITORY -name '*-repodata' | while read; do - ln "${REPLY}" "${REPLY}.genVcdiff" + cp "${REPLY}" "${REPLY}.genVcdiff" done }