diff options
Diffstat (limited to 'common/hooks/post-install/06-strip-and-debug-pkgs.sh')
-rw-r--r-- | common/hooks/post-install/06-strip-and-debug-pkgs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hooks/post-install/06-strip-and-debug-pkgs.sh b/common/hooks/post-install/06-strip-and-debug-pkgs.sh index 191c025e552..b6bd52320dc 100644 --- a/common/hooks/post-install/06-strip-and-debug-pkgs.sh +++ b/common/hooks/post-install/06-strip-and-debug-pkgs.sh @@ -65,7 +65,7 @@ hook() { STRIPCMD=/usr/bin/$STRIP - find ${PKGDESTDIR} -type f | while read f; do + find ${PKGDESTDIR} -type f | while read -r f; do if [[ $f =~ ^${PKGDESTDIR}/usr/lib/debug/ ]]; then continue fi |