building RPM package: force to install in path of a dependent relocated package

自闭症网瘾萝莉.ら 提交于 2019-12-02 09:03:07

问题


I have 2 dependent packages who should be placed in the same target. Package B is dependent on package A.

Package A can be relocated to any another location. I now want package B forced to be placed in the same target as package A. Or simply, package B should not be able to install without the same --prefix.

Any ideas how to acieve this?

I thought of putting a %pre script to check this. But thats not helpful I think, since I can't read the given "prefix" in this script - or can I?

Thank you for your help!


回答1:


Hah. So I did a bit of source diving and discovered that apparently (at least for rpm 4.8.0 I didn't look at other versions) the RPM_INSTALL_PREFIX and RPM_INSTALL_PREFIX# environment variables are set for the %pre (and possibly other scriptlets) to the values of (what appear to be the %{INSTPREFIXES} and/or %{INSTALLPREFIX} macros). [source link]

I would try those in your %pre script. They look like they will give you what you want.

Same code in rpm head.



来源:https://stackoverflow.com/questions/28348561/building-rpm-package-force-to-install-in-path-of-a-dependent-relocated-package

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!