Changeset 61512 in vbox for trunk/src/VBox
- Timestamp:
- Jun 7, 2016 5:54:37 AM (9 years ago)
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/debian/rules
r61503 r61512 57 57 verfile := $(builddir)/version-generated.mk 58 58 ose := $(if $(OSE),1,$(if $(wildcard $(vboxroot)/src/VBox/RDP/server),,1)) 59 arch := $(shell if [ `uname -m` = "x86_64" ]; then echo "amd64"; else echo "i386"; fi)59 chrarch := $(shell if [ `uname -m` = "x86_64" ]; then echo "amd64"; else echo "x86"; fi) 60 60 -include $(vboxroot)/SVN_REVISION 61 61 svnrev :=$(if $(svn_revision),$(svn_revision),) … … 284 284 mv $(archdir) $(prefix)/usr/lib/$(package) 285 285 if [ -f $(prefix)/usr/lib/$(package)/libQt5CoreVBox.so.5 ]; then \ 286 ../../../../tools/linux.$( arch)/bin/chrpath rpm/$(rpmname)chrpath \286 ../../../../tools/linux.$(chrarch)/bin/chrpath rpm/$(rpmname)chrpath \ 287 287 --keepgoing --replace /usr/lib/$(package) \ 288 288 $(prefix)/usr/lib/$(package)/*.so.5 \ -
trunk/src/VBox/Installer/linux/rpm/rules
r61503 r61512 67 67 builddir := $(current)/rpm/builddir 68 68 rpmlib := $(shell if [ `uname -m` = "x86_64" ]; then echo "lib64"; else echo "lib"; fi) 69 arch := $(shell if [ `uname -m` = "x86_64" ]; then echo "amd64"; else echo "i386"; fi)69 chrarch := $(shell if [ `uname -m` = "x86_64" ]; then echo "amd64"; else echo "x86"; fi) 70 70 verfile := $(builddir)/version-generated.mk 71 71 ose := $(if $(OSE),1,$(if $(wildcard $(vboxroot)/src/VBox/RDP/server),,1)) … … 241 241 rpm/VirtualBox.tmpl.spec > $(archdir)/VirtualBox.spec 242 242 mv rpm/VirtualBox-$(ver) rpm/$(rpmname) 243 cp ../../../../tools/linux.$( arch)/bin/chrpath rpm/$(rpmname)243 cp ../../../../tools/linux.$(chrarch)/bin/chrpath rpm/$(rpmname) 244 244 tar -cf rpm/VirtualBox.tar -C rpm $(rpmname) 245 245 rm -f rpmbuild/RPMS/*/VirtualBox*rpm
Note:
See TracChangeset
for help on using the changeset viewer.