diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-11-07 08:09:42 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-11-07 08:09:42 +0100 |
commit | fe7e0e8d1fe7c97dbd8132ca93ad28ab16772241 (patch) | |
tree | 3a0d72cded865f1e6067a0ea308530090a3323e0 | |
parent | 3863afcdbbe07f44452b19b74514da48c4389743 (diff) | |
download | libuca-fe7e0e8d1fe7c97dbd8132ca93ad28ab16772241.tar.gz libuca-fe7e0e8d1fe7c97dbd8132ca93ad28ab16772241.tar.bz2 libuca-fe7e0e8d1fe7c97dbd8132ca93ad28ab16772241.tar.xz libuca-fe7e0e8d1fe7c97dbd8132ca93ad28ab16772241.zip |
Mention the current configure style
-rw-r--r-- | docs/manual.md | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/docs/manual.md b/docs/manual.md index 12b8a85..7c13d61 100644 --- a/docs/manual.md +++ b/docs/manual.md @@ -93,18 +93,11 @@ particular camera support not built. If you want to customize the build process you can pass several variables to CMake: - cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DLIB_SUFFIX=64 + cmake .. -DPREFIX=/usr -DLIBDIR=/usr/lib64 The former tells CMake to install into `/usr` instead of `/usr/local` and the -latter that 64 should be appended to any library paths. This is necessary on -Linux distributions that expect 64-bit libraries in `/usr[/local]/lib64`. - -It is also highly recommended to set the the install prefix to `/usr` when -using the language bindings because GObject introspection will only look for -type libraries in `/usr/lib/girepository-1.0`. If you want to install in another -directory, you can also set the `GI_TYPELIB_PATH` environment variable to the -path were the `Ufo-x.y.typelib` is located. - +latter that we want to install the libraries and plugins into the `lib64` subdir +instead of the default `lib` subdir as it is common on SUSE systems. #### Building this manual |