Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[SOLVED] Problems with dependencies of xorg-server
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
wisemanSSJ
n00b
n00b


Joined: 29 Jul 2010
Posts: 37

PostPosted: Mon Aug 16, 2010 7:27 pm    Post subject: [SOLVED] Problems with dependencies of xorg-server Reply with quote

Hallo! I've decided to emerge xorg-server. But, easy to guess, I received some problems while compiling dependencies of xorg. To be more concrete, an error occurs while emerging the sys-fs/lvm2-2.02.72 .
Here is the error itself:
Code:

make[1]: *** [dmsetup.static] Error 1
make[1]: Leaving directory `/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72/tools'
make: *** [tools.device-mapper] Error 2
 * ERROR: sys-fs/lvm2-2.02.72 failed:
 *   compile fail
 *
 * Call stack:
 *     ebuild.sh, line  54:  Called src_compile
 *   environment, line 3692:  Called die
 * The specific snippet of code:
 *       emake || die "compile fail"
 *
 * If you need support, post the output of 'emerge --info =sys-fs/lvm2-2.02.72',
 * the complete build log and the output of 'emerge -pqv =sys-fs/lvm2-2.02.72'.
 * The complete build log is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/environment'.
 * S: '/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72'

>>> Failed to emerge sys-fs/lvm2-2.02.72, Log file:

>>>  '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/build.log'

 * Messages for package sys-fs/lvm2-2.02.72:

 * Unable to check for the following kernel config options due
 * to absence of any configured kernel sources or compiled
 * config:
 *  - SYSVIPC - CONFIG_SYSVIPC:   is not set (required for udev sync)
 *
 * You're on your own to make sure they are set if needed.
 * Warning, we no longer overwrite /sbin/lvm and /sbin/dmsetup with
 * their static versions. If you need the static binaries,
 * you must append .static the filename!
 * ERROR: sys-fs/lvm2-2.02.72 failed:
 *   compile fail
 *
 * Call stack:
 *     ebuild.sh, line  54:  Called src_compile
 *   environment, line 3692:  Called die
 * The specific snippet of code:
 *       emake || die "compile fail"
 *
 * If you need support, post the output of 'emerge --info =sys-fs/lvm2-2.02.72',
 * the complete build log and the output of 'emerge -pqv =sys-fs/lvm2-2.02.72'.
 * The complete build log is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/environment'.
 * S: '/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72'


I'm not sure if I really need lvm2. I didn't really configure my system especially to support lvm. But I really do need to emerge xorg-server.
Is there any way to fig the problem?

What info of my system should I give?
In any case, here is make.conf:
Code:

  GNU nano 2.2.5            File: /etc/make.conf                               

# These settings were set by the catalyst build script that automatically
# built this stage.
# Please consult /usr/share/portage/config/make.conf.example for a more
# detailed example.
CFLAGS="-O2 -march=prescott -pipe -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"
MAKEOPTS="-j5"
#SYNC="rsync://rsync.ua.gentoo.org"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
GENTOO_MIRRORS="rsync://rsync.us.gentoo.org"
GENTOO_MIRRORS="rsync://gentoo.kiev.ua/gentoo-distfiles"
GENTOO_MIRRORS="http://gentoo.iteam.net.ua"
# WARNING: Changing your CHOST is not something that should be done lightly.
# Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing.
CHOST="i686-pc-linux-gnu"

# Configuration for X
VIDEO_CARDS="nvidia"
INPUT_DEVICES="evdev synaptics"
#----ACCEPTANCE-------------------------------------------------------------
ACCEPT_KEYWORDS="~x86"
ACCEPT_LICENSE="* -@Broadcom"

#-----USE------------------------------------------------------------
XUSE="truetype X new-login xorg xscreensaver xv xcomposite xinerama opengl aigl$
IMAGEUSE="jpeg gif tiff png svg pdf nvidia"
MEDIAUSE="alsa esd eds xine mad vidix asf win32codecs dvd mp4 aac x264 xid nspl$
GENERAL="samba java bzip2 symlink sqlite spell xml cdr dvdr"
SYSTEM="hal fam dbus aoss threads static-libs"
NOTUSE="-arts -qt4 -ipv6"
KDEUSE="-kde -qt3"
GNOMEUSE="gtk gtk2 cairo gdu gnome glitz firefox gnutls beagle mono"
USE="${NOTUSE} ${SYSTEM} ${GENERAL} ${IMAGEUSE} ${XUSE} ${KDEUSE} ${MEDIAUSE} $$
#---------------------------------------------------------------------




Thanks in advance for your help!


Last edited by wisemanSSJ on Tue Aug 17, 2010 9:04 pm; edited 1 time in total
Back to top
View user's profile Send private message
krinn
Advocate
Advocate


Joined: 02 May 2003
Posts: 3675

PostPosted: Mon Aug 16, 2010 8:40 pm    Post subject: Reply with quote

wisemanSSJ wrote:
What info of my system should I give?

About your system, the best is emerge --info output

About the error it's said already, but that one is the best
Code:
* The complete build log is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/build.log'.


But in your case, it's simple as the "why it fail" is already said :
Code:

* Unable to check for the following kernel config options due
 * to absence of any configured kernel sources or compiled
 * config:
 *  - SYSVIPC - CONFIG_SYSVIPC:   is not set (required for udev sync)


It mean you need a kernel with that option set, and it also mean your kerndel source can't be found
try checking eselect kenrel list to make it point to your running kernel (i suppose you didn't really remove the kernel source)
Back to top
View user's profile Send private message
wisemanSSJ
n00b
n00b


Joined: 29 Jul 2010
Posts: 37

PostPosted: Mon Aug 16, 2010 9:35 pm    Post subject: Reply with quote

Thanks a lot for your answer. Here is emerge --info:
Code:

Portage 2.1.8.3 (default/linux/x86/10.0, gcc-4.4.4, glibc-2.12.1-r0, 2.6.32-24-generic i686)
=================================================================
System uname: Linux-2.6.32-24-generic-i686-Intel-R-_Core-TM-2_Duo_CPU_P8600_@_2.40GHz-with-gentoo-2.0.1
Timestamp of tree: Mon, 16 Aug 2010 08:00:02 +0000
app-shells/bash:     4.1_p7
dev-java/java-config: 2.1.11
dev-lang/python:     2.6.5-r3, 3.1.2-r4
dev-util/cmake:      2.8.1-r2
sys-apps/baselayout: 2.0.1
sys-apps/openrc:     0.6.1-r1
sys-apps/sandbox:    2.2
sys-devel/autoconf:  2.65-r1
sys-devel/automake:  1.11.1
sys-devel/binutils:  2.20.1-r1
sys-devel/gcc:       4.4.4-r1
sys-devel/gcc-config: 1.4.1
sys-devel/libtool:   2.2.10
virtual/os-headers:  2.6.34
ACCEPT_KEYWORDS="x86 ~x86"
ACCEPT_LICENSE="* -@Broadcom"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-O2 -march=prescott -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/X11/xkb"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c"
CXXFLAGS="-O2 -march=prescott -pipe -fomit-frame-pointer"
DISTDIR="/usr/portage/distfiles"
FEATURES="assume-digests distlocks fixpackages news parallel-fetch protect-owned sandbox sfperms strict unmerge-logs unmerge-orphans userfetch"
GENTOO_MIRRORS="http://gentoo.iteam.net.ua"
LANG="en_US.UTF-8"
LC_ALL=""
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
MAKEOPTS="-j5"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="X aac acl aiglx alsa aoss asf beagle berkdb bzip2 cairo cdr cli cracklib crypt cups cxx dbus dri dvd dvdr eds esd fam firefox fortran gdbm gdu gif glitz gnome gnutls gpm gstreamer gtk gtk2 hal iconv java jpeg mad modules mono mp3 mp4 mudflap ncurses new-login nls nptl nptlonly nsplugin nvidia opengl openmp pam pcre pdf perl png pppd python readline reflection samba session spell spl sqlite ssl static-libs svg symlink sysfs tcpd threads tiff truetype unicode vidix win32codecs x264 x86 xcomposite xid xine xinerama xml xorg xscreensaver xv zlib" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1 emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" ELIBC="glibc" INPUT_DEVICES="evdev synaptics" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" RUBY_TARGETS="ruby18" USERLAND="GNU" VIDEO_CARDS="nvidia" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, FFLAGS, INSTALL_MASK, LINGUAS, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, PORTDIR_OVERLAY


About kernel configuration:
yep, I've done the eselect and chose the necessary source.
Here is the new error at compilation-stage:

Code:

make[1]: *** [dmsetup.static] Error 1
make[1]: Leaving directory `/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72/tools'
make: *** [tools.device-mapper] Error 2
 * ERROR: sys-fs/lvm2-2.02.72 failed:
 *   compile fail
 *
 * Call stack:
 *     ebuild.sh, line  54:  Called src_compile
 *   environment, line 3691:  Called die
 * The specific snippet of code:
 *       emake || die "compile fail"
 *
 * If you need support, post the output of 'emerge --info =sys-fs/lvm2-2.02.72',
 * the complete build log and the output of 'emerge -pqv =sys-fs/lvm2-2.02.72'.
 * The complete build log is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/environment'.
 * S: '/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72'

>>> Failed to emerge sys-fs/lvm2-2.02.72, Log file:

>>>  '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/build.log'

 * Messages for package sys-fs/lvm2-2.02.72:

 * Warning, we no longer overwrite /sbin/lvm and /sbin/dmsetup with
 * their static versions. If you need the static binaries,
 * you must append .static the filename!
 * ERROR: sys-fs/lvm2-2.02.72 failed:
 *   compile fail
 *
 * Call stack:
 *     ebuild.sh, line  54:  Called src_compile
 *   environment, line 3691:  Called die
 * The specific snippet of code:
 *       emake || die "compile fail"
 *
 * If you need support, post the output of 'emerge --info =sys-fs/lvm2-2.02.72',
 * the complete build log and the output of 'emerge -pqv =sys-fs/lvm2-2.02.72'.
 * The complete build log is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/environment'.
 * S: '/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72'



Last edited by wisemanSSJ on Mon Aug 16, 2010 10:01 pm; edited 1 time in total
Back to top
View user's profile Send private message
djhyland
n00b
n00b


Joined: 26 Nov 2008
Posts: 43
Location: St. Paul MN

PostPosted: Mon Aug 16, 2010 9:49 pm    Post subject: Reply with quote

Quote:
As for "eselect kernel list". I don't think I am good at this. Where can I read more about that? Actually, that's the reason I didn't understand the text in error.


In your terminal, type "eselect kernel list" (without the quotes). You should get an output like:
Code:
djhyland@ikronix ~ $ eselect kernel list
Available kernel symlink targets:
  [1]   linux-2.6.34-gentoo-r2
  [2]   linux-2.6.35-gentoo-r1 *


The * after one of the selections means that that kernel is the one you're compiling when you build a kernel or when you build modules against a kernel. If you want to switch which kernel is active, you'd run "eselect kernel set x" as root, where "x" is the number of the kernel you'd like. For instance, I'd run "eselect kernel set 1" to switch to 2.6.34-gentoo-r2 if I was having problems with 2.6.35-gentoo-r1 and wanted to go back to an earlier kernel.

That said, I'm having trouble with the original poster's problem as well.
Back to top
View user's profile Send private message
wisemanSSJ
n00b
n00b


Joined: 29 Jul 2010
Posts: 37

PostPosted: Mon Aug 16, 2010 10:05 pm    Post subject: Reply with quote

Thanks! I understood that thing just a minute earlier.
Here is the build.log of mine: http://paste.pocoo.org/show/251075/

So the error still appears. The necessary info is upper.
Back to top
View user's profile Send private message
krinn
Advocate
Advocate


Joined: 02 May 2003
Posts: 3675

PostPosted: Mon Aug 16, 2010 10:57 pm    Post subject: Reply with quote

look from your emerge --info
Code:
Portage 2.1.8.3 (default/linux/x86/10.0, gcc-4.4.4, glibc-2.12.1-r0, 2.6.32-24-generic i686)


and from your error log
Code:
 *     /usr/src/linux
 * Found kernel object directory:
 *     /lib/modules/2.6.34-gentoo-r1/build
 * Found sources for kernel version:
 *     2.6.34-gentoo-r1


and if you didn't catch it, you are using kernel 2.6.32-24-generic and the compile is against kernel-2.6.34-gentoo-r1

you also have
Code:
* Running eautoreconf in '/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72' ...
Undefined license group 'Broadcom'

because of
Code:
ACCEPT_LICENSE="* -@Broadcom"
Back to top
View user's profile Send private message
wisemanSSJ
n00b
n00b


Joined: 29 Jul 2010
Posts: 37

PostPosted: Tue Aug 17, 2010 8:21 am    Post subject: Reply with quote

I fixed that (kernel versions). The error is the same.
Back to top
View user's profile Send private message
ssuominen
Developer
Developer


Joined: 30 Sep 2005
Posts: 1821
Location: Finland

PostPosted: Tue Aug 17, 2010 9:13 am    Post subject: Reply with quote

It would have been helpful if you had posted the error here, instead of only in pastebin:

/usr/lib/gcc/i686-pc-linux-gnu/4.4.4/../../../../i686-pc-linux-gnu/bin/ld: dynamic STT_GNU_IFUNC symbol `strcmp' with pointer equality in `/usr/lib/gcc/i686-pc-linux-gnu/4.4.4/../../../libc.a(strcmp.o)' can not be used when making an executable; recompile with -fPIE and relink with -pie
collect2: ld returned 1 exit status

That's http://bugs.gentoo.org/332905 and there's a patch
Back to top
View user's profile Send private message
wisemanSSJ
n00b
n00b


Joined: 29 Jul 2010
Posts: 37

PostPosted: Tue Aug 17, 2010 4:18 pm    Post subject: Reply with quote

Patch didn't help. A mistake changed a bit. Here it is:

Code:

Didn't help me. But the error changed a bit. Here is what I get:


i686-pc-linux-gnu-gcc -O2 -march=prescott -pipe -fomit-frame-pointer -O2 -march=prescott -pipe -fomit-frame-pointer -fPIC -Wall -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wmissing-noreturn -Wformat-security -Wredundant-decls -O2 -O2 -march=prescott -pipe -fomit-frame-pointer -fPIC -Wall -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wmissing-noreturn -Wformat-security -Wredundant-decls -O2 -Wl,-O1 -Wl,--as-needed -Wl,-O1 -Wl,--as-needed -Wl,--export-dynamic -L./libdm -L./lib -L./daemons/dmeventd -Wl,-O1 -Wl,--as-needed -Wl,--export-dynamic -L../libdm -L../lib -L../daemons/dmeventd -static -L../libdm/ioctl \
         -o dmsetup.static dmsetup.o -ldevmapper  -ludev -lm  -ludev
make[2]: Entering directory `/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72/daemons/dmeventd'
i686-pc-linux-gnu-gcc -O2 -march=prescott -pipe -fomit-frame-pointer -O2 -march=prescott -pipe -fomit-frame-pointer -fPIC -Wall -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wmissing-noreturn -Wformat-security -Wredundant-decls -O2 -O2 -march=prescott -pipe -fomit-frame-pointer -fPIC -Wall -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wmissing-noreturn -Wformat-security -Wredundant-decls -O2 -O2 -march=prescott -pipe -fomit-frame-pointer -fPIC -Wall -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wmissing-noreturn -Wformat-security -Wredundant-decls -O2 -Wl,-O1 -Wl,--as-needed -Wl,-O1 -Wl,--as-needed -Wl,--export-dynamic -L./libdm -L./lib -L./daemons/dmeventd -Wl,-O1 -Wl,--as-needed -Wl,--export-dynamic -L../libdm -L../lib -L../daemons/dmeventd -Wl,-O1 -Wl,--as-needed -Wl,--export-dynamic -L../../libdm -L../../lib -L../../daemons/dmeventd -static -L. -L../../libdm/ioctl -o dmeventd.static \
   dmeventd.o -ldl -ldevmapper-event -lpthread -lm  -ldevmapper  -ludev
/usr/lib/gcc/i686-pc-linux-gnu/4.4.4/../../../../i686-pc-linux-gnu/bin/ld: dynamic STT_GNU_IFUNC symbol `strcmp' with pointer equality in `/usr/lib/gcc/i686-pc-linux-gnu/4.4.4/../../../libc.a(strcmp.o)' can not be used when making an executable; recompile with -fPIE and relink with -pie
collect2: ld returned 1 exit status
make[1]: *** [dmsetup.static] Error 1
make[1]: Leaving directory `/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72/tools'
make: *** [tools.device-mapper] Error 2
make: *** Waiting for unfinished jobs....
dmeventd.o: In function `_register_for_event':
dmeventd.c:(.text+0xfe8): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/i686-pc-linux-gnu/4.4.4/../../../../i686-pc-linux-gnu/bin/ld: dynamic STT_GNU_IFUNC symbol `strcmp' with pointer equality in `/usr/lib/gcc/i686-pc-linux-gnu/4.4.4/../../../libc.a(strcmp.o)' can not be used when making an executable; recompile with -fPIE and relink with -pie
collect2: ld returned 1 exit status
make[2]: *** [dmeventd.static] Error 1
make[2]: Leaving directory `/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72/daemons/dmeventd'
make[1]: *** [dmeventd.device-mapper] Error 2
make[1]: Leaving directory `/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72/daemons'
make: *** [daemons.device-mapper] Error 2
 * ERROR: sys-fs/lvm2-2.02.72 failed:
 *   compile fail
 *
 * Call stack:
 *     ebuild.sh, line  54:  Called src_compile
 *   environment, line 3691:  Called die
 * The specific snippet of code:
 *       emake || die "compile fail"
 *
 * If you need support, post the output of 'emerge --info =sys-fs/lvm2-2.02.72',
 * the complete build log and the output of 'emerge -pqv =sys-fs/lvm2-2.02.72'.
 * The complete build log is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/sys-fs/lvm2-2.02.72/temp/environment'.
 * S: '/var/tmp/portage/sys-fs/lvm2-2.02.72/work/LVM2.2.02.72'

Back to top
View user's profile Send private message
ssuominen
Developer
Developer


Joined: 30 Sep 2005
Posts: 1821
Location: Finland

PostPosted: Tue Aug 17, 2010 4:27 pm    Post subject: Reply with quote

wisemanSSJ wrote:
Patch didn't help. A mistake changed a bit. Here it is:


The patch works. Your paste isn't using the patch.
Back to top
View user's profile Send private message
wisemanSSJ
n00b
n00b


Joined: 29 Jul 2010
Posts: 37

PostPosted: Tue Aug 17, 2010 5:15 pm    Post subject: Reply with quote

ssuominen wrote:
wisemanSSJ wrote:
Patch didn't help. A mistake changed a bit. Here it is:


The patch works. Your paste isn't using the patch.


Hm. Here are the things I'm doing:
1. ebuild *path* fetch
2. ebuild *path* unpack
3. I add the necessary info either manually or do "patch -p*n* <*path_to_patch*
4. ebuild *path* compile.

Should I use another algorithm?
I checked the files in /var/tmp/portage/sys-fs/lvm2**/work/LVM2**/ - the info has been added.


Last edited by wisemanSSJ on Fri Aug 20, 2010 8:27 pm; edited 1 time in total
Back to top
View user's profile Send private message
wisemanSSJ
n00b
n00b


Joined: 29 Jul 2010
Posts: 37

PostPosted: Tue Aug 17, 2010 9:04 pm    Post subject: Reply with quote

Installed patch the right way =)
Thanks for everyone's help! The problem is solved.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum