Gentoo Archives: gentoo-science

From: Vittorio <vitto.giova@×××××.it>
To: gentoo-science@l.g.o
Subject: [gentoo-science] Re: mpich2 fails to build
Date: Thu, 19 Feb 2009 17:07:57
Message-Id: 4de51c660902190907j4bde6216kb0d3a373f2bfdc26@mail.gmail.com
In Reply to: [gentoo-science] mpich2 fails to build by Vittorio
1 ok i found the solution
2
3 there's an error at line 144 of mpich2-1.0.8.ebuild
4 a "\" is missing at the end of the line
5
6 is
7
8 econf $(mpi_econf_args) ${c} ${romio_conf} \
9 > --docdir=$(mpi_root)/usr/share/doc/${PF}
10 > --with-pm=mpd:gforker \
11 > --disable-mpe \
12 > $(use_enable romio) \
13 > $(use_enable !nocxx cxx) \
14 > || die
15 >
16
17 should be
18
19 econf $(mpi_econf_args) ${c} ${romio_conf} \
20 > --docdir=$(mpi_root)/usr/share/doc/${PF} \
21 > --with-pm=mpd:gforker \
22 > --disable-mpe \
23 > $(use_enable romio) \
24 > $(use_enable !nocxx cxx) \
25 > || die
26
27
28
29 how can i use git to send this in the main repo?
30 bye
31 Vittorio Giovara
32
33 On Thu, Feb 19, 2009 at 2:36 AM, Vittorio <vitto.giova@×××××.it> wrote:
34
35 > hi!
36 > i was trying to build mpich2 with empi and the build fails just after
37 > "configuration done" with
38 >
39 > /var/tmp/portage/mpi-mpich2/mpich2-1.0.8/temp/environment: line 3438:
40 > --with-pm=mpd:gforker: command not found
41 >
42 > (content of the script)
43 > 3439: econf $(mpi_econf_args) ${c} ${romio_conf}
44 > --docdir=$(mpi_root)/usr/share/doc/${PF};
45 > 3438: --with-pm=mpd:gforker --disable-mpe $(use_enable romio)
46 > $(use_enable !nocxx cxx) || die;
47 >
48 > how is it possible to fix this?
49 > thanks
50 > Vittorio
51 >