You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just tried to package bohrium 0.11.0, however, I run into the issue that when I run make DESTDIR=$pkgdir install, bohrium attempts to install to /usr/lib/python3.8... (which was set via -DCMAKE_INSTALL_PREFIX=/usr earlier, as this will be the location after the final installation). This is of course very unintended behavior for packaging. I haven't found any documentation or a flag to change this behavior so far.
How is this supposed to be changed?
For Python-packages, typically one can set the --root="$pkgdir/"-option, which takes care of this issue, such as
python setup.py install --root="$pkgdir/"
Is something like this configurable in bohrium?
The text was updated successfully, but these errors were encountered:
I just tried to package bohrium 0.11.0, however, I run into the issue that when I run
make DESTDIR=$pkgdir install
, bohrium attempts to install to/usr/lib/python3.8...
(which was set via-DCMAKE_INSTALL_PREFIX=/usr
earlier, as this will be the location after the final installation). This is of course very unintended behavior for packaging. I haven't found any documentation or a flag to change this behavior so far.How is this supposed to be changed?
For Python-packages, typically one can set the
--root="$pkgdir/"
-option, which takes care of this issue, such asIs something like this configurable in bohrium?
The text was updated successfully, but these errors were encountered: