Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 211613 - net-p2p/gnunet-gtk ebuild enhancements
Summary: net-p2p/gnunet-gtk ebuild enhancements
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Gentoo net-p2p team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-02-27 11:33 UTC by Bernd Steinhauser
Modified: 2008-03-01 19:59 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Bernd Steinhauser 2008-02-27 11:33:05 UTC
The current ebuild in portage for gnunet-gtk has some mistakes:
-       emake -j1 || die "emake failed"
+       emake || die "emake failed"

The package builds fine with -j4. So removing this restriction should be safe.
-       make DESTDIR="${D}" -j1 install || die
+       emake DESTDIR="${D}" install || die "emake install failed"

There is no point to not use emake here, emake works fine. Also the -j1 is useless here.

Reproducible: Always

Steps to Reproduce:
Comment 1 Raúl Porcel (RETIRED) gentoo-dev 2008-03-01 19:59:02 UTC
Fixed, thanks.