From: Fabian Groffen Date: Sun, 8 Jul 2012 17:25:01 +0000 (+0200) Subject: build-sys: undo too aggressive glob change X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7b62265a8cdadb923d4138d59f252d69bd8138b6;p=portage.git build-sys: undo too aggressive glob change in bin/ we DO need the local directory to be processed as well --- diff --git a/bin/Makefile.in b/bin/Makefile.in index 9a5b59aba..e9bf141f0 100644 --- a/bin/Makefile.in +++ b/bin/Makefile.in @@ -39,7 +39,7 @@ all: install: $(INSTALL) -d -m 755 -o "$(portageuser)" -g "$(portagegroup)" $(DESTDIR)$(PORTAGE_BIN) - ( cd "$(srcdir)" && find * -type d ) | while read f ; do \ + ( cd "$(srcdir)" && find . -type d ) | while read f ; do \ files=( ) ; \ for t in "$(srcdir)/$${f}"/* ; do \ [[ -d $${t} ]] && continue ; \