WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=2754740e4e7aca7a434f575c592ecf5a5866876c
commit 2754740e4e7aca7a434f575c592ecf5a5866876c Author: Philippe Jean Guillaumie <bat...@sfr.fr> Date: Fri Feb 5 06:59:13 2021 -0800 Wiki page ubuntu-start.md changed with summary [Update 'carrying out post Installation tasks'] by Philippe Jean Guillaumie --- pages/docs/distros/ubuntu-start.md.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/docs/distros/ubuntu-start.md.txt b/pages/docs/distros/ubuntu-start.md.txt index 67aa119d5..b1ffb6e4d 100644 --- a/pages/docs/distros/ubuntu-start.md.txt +++ b/pages/docs/distros/ubuntu-start.md.txt @@ -17,7 +17,7 @@ You can also download the source code for the most recent version from the EFL g Whichever installation method you use, visit ["Compiling EFL Applications"](#Compiling_EFL_Applications) to discover how to compile your Enlightenment applications. -## From Distribution repos ## +## From Distribution repos ## EFL is not available in Ubuntu's official repositories, but you can install all the items you need from a special PPA repository. [See below for instructions on how to do that](#Installing_from_a_Special_Repository). @@ -96,10 +96,10 @@ This will configure the files needed for compiling, actually compile the softwar ### Step 5: Carrying out Post Installation Tasks ### -As you are not installing to ``/usr`` but to ``/usr/local``, you will have to ensure that some files are visible to *dbus*: +You also have to make some files visible to *pkgconfig*. To do this open ``/etc/profile`` in a text editor as root (using for example ``sudo nano /etc/profile``) and add the following line to the end: ```bash -sudo ln -s /usr/local/share/dbus-1/services/org.enlightenment.Ethumb.service /usr/share/dbus-1/services/org.enlightenment.Ethumb.service +export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig ``` You may also need to refresh your library path to make sure your apps can find the EFL libraries: @@ -159,10 +159,10 @@ sudo ninja -C build install ### Step 4: Carrying out Post Installation Tasks ### -As you are not installing to ``/usr`` but to ``/usr/local``, you will have to ensure that some files are visible to *dbus*: +You also have to make some files visible to *pkgconfig*. To do this open ``/etc/profile`` in a text editor as root (using for example ``sudo nano /etc/profile``) and add the following line to the end: ```bash -sudo ln -s /usr/local/share/dbus-1/services/org.enlightenment.Ethumb.service /usr/share/dbus-1/services/org.enlightenment.Ethumb.service +export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig ``` You may also need to refresh your library path to make sure your apps can find the EFL libraries: --