From 8d4cc875ea36dbc54591428645fe12d8c805f56e Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 21 Aug 2009 11:55:41 +0200 Subject: [PATCH] xbps-src: when stowning a package, do not copy metadata files. --HG-- extra : convert_revision : xtraeme%40gmail.com-20090821095541-833o0srxzybgg0z7 --- shutils/stow_funcs.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shutils/stow_funcs.sh b/shutils/stow_funcs.sh index 520734ff..a99dd94c 100644 --- a/shutils/stow_funcs.sh +++ b/shutils/stow_funcs.sh @@ -94,7 +94,10 @@ stow_pkg_real() # Copy files into masterdir. for i in $(echo *); do - [ "$i" = "INSTALL" ] && continue + if [ "$i" = "INSTALL" -o "$i" = "REMOVE" -o \ + "$i" = "files.plist" -o "$i" = "props.plist" ]; then + continue + fi cp -a ${i} $XBPS_MASTERDIR done