Dan Nicholson wrote:
> I'm probably going to retitle the xfce session bug #2172 because the
> discussion has evolved into more of a general XDG Base Directory Spec
> bug. However, the xfce specific part can be fixed by building
> libxfce4util with --sysconfdir=/etc.
>
> If you look at the xfce page, the commands are broken up into sections
> with different configure commands. Since libxfce4util has to go first
> (roughly, dbh could go before it), this would break the commands into
> another section. I'm wondering if anyone cares if consolidate the
> commands so that --sysconfdir=/etc is always passed in, regardless of
> whether it's needed or not. It doesn't hurt anything to set it.
>
> Let me know what you guys think or if you have a better suggestion
> which doesn't make the page unnecessarily long.
The LiveCD always passes all configure switches to all pars of xfce. It
doesn't hurt to do the same in the book and say that unneeded switches have
no effect. This way, the whole installation can be reduced to something like:
cat >list <<"EOF"
libxfce4util-4.2.3.2
dbh-1.0.24
libxfcegui4-4.2.3
.....
EOF
cd src
for i in `cat ../list`; do
tar xf $i.tar.gz
cd $i
./configure --prefix=/usr --sysconfdir=/etc \
--enable-debug=no --enable-panel --enable-startup-notification \
--libexecdir=/usr/sbin --enable-compositor
make
make install
cd ..
done
WARNING: don't take the ./configure line above literally. Packages that are
not on the CD (e.g., xfce4-mixer) may want additional switches.
--
Alexander E. Patrakov
--
http://linuxfromscratch.org/mailman/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page