summaryrefslogtreecommitdiffstats
path: root/makechrootpkg
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2010-02-11 23:27:30 +0100
committerPierre Schmitz <pierre@archlinux.de>2010-02-11 23:27:30 +0100
commitf76261f073b0403d3dc8efadca3938f099e46beb (patch)
tree8bb7c8146801b9a1d258af46509ba0e37c87d758 /makechrootpkg
parenta37c07a8cb676486da2787e23734b086fe539506 (diff)
downloaddevtools-f76261f073b0403d3dc8efadca3938f099e46beb.tar.gz
devtools-f76261f073b0403d3dc8efadca3938f099e46beb.tar.xz
don't cross filesystems. usefull if you bind a local mirror into your working copy
Diffstat (limited to 'makechrootpkg')
-rwxr-xr-xmakechrootpkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/makechrootpkg b/makechrootpkg
index bbacec8..d8e03ba 100755
--- a/makechrootpkg
+++ b/makechrootpkg
@@ -109,7 +109,7 @@ umask 000
if [ ! -d "$copydir" -o "$clean_first" -eq "1" ]; then
echo "creating clean working copy"
mkdir -p "$copydir"
- rsync -a --delete -q -W "$chrootdir/root/" "$copydir"
+ rsync -a --delete -q -W -x "$chrootdir/root/" "$copydir"
fi
if [ -n "$install_pkg" ]; then