Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10060 - in main/branches/prefix: . bin cnf pym
Date: Thu, 01 May 2008 17:13:52
Message-Id: E1JrcLt-0004AU-SA@stork.gentoo.org
1 Author: grobian
2 Date: 2008-05-01 17:13:48 +0000 (Thu, 01 May 2008)
3 New Revision: 10060
4
5 Modified:
6 main/branches/prefix/bin/Makefile.in
7 main/branches/prefix/cnf/Makefile.in
8 main/branches/prefix/configure.in
9 main/branches/prefix/pym/Makefile.in
10 Log:
11 more quoting to get spaces in username/groupname working right
12
13 Modified: main/branches/prefix/bin/Makefile.in
14 ===================================================================
15 --- main/branches/prefix/bin/Makefile.in 2008-05-01 17:10:11 UTC (rev 10059)
16 +++ main/branches/prefix/bin/Makefile.in 2008-05-01 17:13:48 UTC (rev 10060)
17 @@ -12,7 +12,7 @@
18 PORTAGE_BIN = @PORTAGE_BASE@/bin
19 LN_S = @LN_S@
20 INSTALL = @INSTALL@
21 -INSTALL_script = @INSTALL_PROGRAM@ -o $(portageuser) -g $(portagegroup) -m 755
22 +INSTALL_script = @INSTALL_PROGRAM@ -o "$(portageuser)" -g "$(portagegroup)" -m 755
23 INSTALL_scriptsubst = $(SHELL) ${top_builddir}/subst-install --installcmd='${INSTALL_script}'
24
25 user_binprogs = \
26
27 Modified: main/branches/prefix/cnf/Makefile.in
28 ===================================================================
29 --- main/branches/prefix/cnf/Makefile.in 2008-05-01 17:10:11 UTC (rev 10059)
30 +++ main/branches/prefix/cnf/Makefile.in 2008-05-01 17:13:48 UTC (rev 10060)
31 @@ -10,7 +10,7 @@
32 portagegroup = @portagegroup@
33
34 INSTALL = @INSTALL@
35 -INSTALL_cnf = @INSTALL_PROGRAM@ -o $(portageuser) -g $(portagegroup) -m 644
36 +INSTALL_cnf = @INSTALL_PROGRAM@ -o "$(portageuser)" -g "$(portagegroup)" -m 644
37 INSTALL_cnfsubst = $(SHELL) ${top_builddir}/subst-install --installcmd='${INSTALL_cnf}'
38
39 list_sourcedir = \
40
41 Modified: main/branches/prefix/configure.in
42 ===================================================================
43 --- main/branches/prefix/configure.in 2008-05-01 17:10:11 UTC (rev 10059)
44 +++ main/branches/prefix/configure.in 2008-05-01 17:13:48 UTC (rev 10060)
45 @@ -187,9 +187,9 @@
46 AC_HELP_STRING([--with-root-user=myuser],[uses 'myuser' as owner of installed files (default is portage-user)]),
47 [case "${withval}" in
48 ""|yes) AC_MSG_ERROR(bad value ${withval} for --with-root-user);;
49 - *) rootuser=${withval};;
50 + *) rootuser="${withval}";;
51 esac],
52 -[rootuser=${portageuser}])
53 +[rootuser="${portageuser}"])
54
55 AC_MSG_CHECKING([for user id of ${rootuser}])
56 dnl grab uid of rootuser
57
58 Modified: main/branches/prefix/pym/Makefile.in
59 ===================================================================
60 --- main/branches/prefix/pym/Makefile.in 2008-05-01 17:10:11 UTC (rev 10059)
61 +++ main/branches/prefix/pym/Makefile.in 2008-05-01 17:13:48 UTC (rev 10060)
62 @@ -12,7 +12,7 @@
63
64 PORTAGE_PYM = @PORTAGE_BASE@/pym
65 INSTALL = @INSTALL@
66 -INSTALL_PY = @INSTALL_DATA@ -o $(portageuser) -g $(portagegroup)
67 +INSTALL_PY = @INSTALL_DATA@ -o "$(portageuser)" -g "$(portagegroup)"
68 INSTALL_PYsubst = $(SHELL) ${top_builddir}/subst-install --installcmd='${INSTALL_PY}'
69
70 list_sourcedir_dirs = \
71
72 --
73 gentoo-commits@l.g.o mailing list