Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:prefix commit in: bin/
Date: Sun, 08 Jul 2012 17:25:56
Message-Id: 1341768301.7b62265a8cdadb923d4138d59f252d69bd8138b6.grobian@gentoo
1 commit: 7b62265a8cdadb923d4138d59f252d69bd8138b6
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 8 17:25:01 2012 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 8 17:25:01 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=7b62265a
7
8 build-sys: undo too aggressive glob change
9
10 in bin/ we DO need the local directory to be processed as well
11
12 ---
13 bin/Makefile.in | 2 +-
14 1 files changed, 1 insertions(+), 1 deletions(-)
15
16 diff --git a/bin/Makefile.in b/bin/Makefile.in
17 index 9a5b59a..e9bf141 100644
18 --- a/bin/Makefile.in
19 +++ b/bin/Makefile.in
20 @@ -39,7 +39,7 @@ all:
21
22 install:
23 $(INSTALL) -d -m 755 -o "$(portageuser)" -g "$(portagegroup)" $(DESTDIR)$(PORTAGE_BIN)
24 - ( cd "$(srcdir)" && find * -type d ) | while read f ; do \
25 + ( cd "$(srcdir)" && find . -type d ) | while read f ; do \
26 files=( ) ; \
27 for t in "$(srcdir)/$${f}"/* ; do \
28 [[ -d $${t} ]] && continue ; \