Clarification question re Installation wiki #708
-
Sorry, but I'm confused on a couple of points: What I've done so far: cd; cd bluez-alsa
git pull origin master
autoreconf --install --force
... My confusion begins with Step 2 of the installation wiki where it says: "Create a new directory in which to perform the build."
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can use the existing one, or you can create a new one, it doesn't really matter (in 99% cases :D). However, in case of bluez-alsa upgrade from previous release to the new one (in this particular case), when using the old build directory, you will have to run
When using previous build directory, the (re)configuration should be auto-triggered by the build system, so you do not have to run it manually (but you can). The simplest upgrade step might look like: ~/bluez-alsa/build $ make clean
~/bluez-alsa/build $ cd ..
~/bluez-alsa $ git pull
~/bluez-alsa $ autoreconf --install --force
~/bluez-alsa $ cd build
~/bluez-alsa/build $ ../configure <previously used options> --enable-new-feature # (optional step, to enable/disable new features added in a new release)
~/bluez-alsa/build $ make
~/bluez-alsa/build $ sudo make install |
Beta Was this translation helpful? Give feedback.
You can use the existing one, or you can create a new one, it doesn't really matter (in 99% cases :D). However, in case of bluez-alsa upgrade from previous release to the new one (in this particular case), when using the old build directory, you will have to run
make clean
in it, before runningmake
. There are some issues with autotools (or with configuration in bluez-alsa project...).