diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-02-11 23:27:30 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-02-11 23:27:30 +0100 |
commit | f76261f073b0403d3dc8efadca3938f099e46beb (patch) | |
tree | 8bb7c8146801b9a1d258af46509ba0e37c87d758 /makechrootpkg | |
parent | a37c07a8cb676486da2787e23734b086fe539506 (diff) | |
download | devtools32-f76261f073b0403d3dc8efadca3938f099e46beb.tar.xz |
don't cross filesystems. usefull if you bind a local mirror into your working copy
Diffstat (limited to 'makechrootpkg')
-rwxr-xr-x | makechrootpkg | 2 |
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 |