From a679f70c55809380504559ee3f4a0fa0626c0bd8 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 16 Feb 2009 21:50:02 +0100 Subject: [PATCH] stow_pkg: don't copy XBPS_PREPOST_INSTALL into masterdir. --HG-- extra : convert_revision : 64e69cc303e6561a250796028810d89d88682573 --- shutils/stow_funcs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/shutils/stow_funcs.sh b/shutils/stow_funcs.sh index 3d68e7dac35..91312a4aaab 100644 --- a/shutils/stow_funcs.sh +++ b/shutils/stow_funcs.sh @@ -55,6 +55,7 @@ stow_pkg() # Copy files into masterdir. for i in $(echo *); do + [ "$i" = "XBPS_PREPOST_INSTALL" ] && continue cp -ar ${i} $XBPS_MASTERDIR done