Changeset 41163 in vbox for trunk/src/VBox/Installer
- Timestamp:
- May 4, 2012 12:52:19 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/rpm/rules
r41038 r41163 97 97 $(error failed to detect the .spec file (rpmrel=$(rpmrel))) 98 98 endif 99 endif 100 101 ifneq ($(wildcard $(verfile)),) 102 include $(verfile) 99 100 # contrary to debian we need the verfile earlier to get the correct rpmname into the bld_flags 101 include $(verfile) 102 $(verfile): rpm/configure-stamp 103 . rpm/env.sh && kmk -C $(vboxroot) $(verfile) $(bld_flags) 104 105 endif 106 103 107 ver := $(VBOX_VERSION_STRING) 104 108 rpmver :=$(ver)$(if $(NOSUBVER),,$(if $(svn_revision),_$(svn_revision),)$(VERSUFFIX)$(if $(HEADLESS),_headless,)$(if $(DEBUG),_dbg,))$(if $(BLEEDING_EDGE),_$(BLEEDING_EDGE),) 105 109 archdir := $(current)/rpm/VirtualBox-$(ver) 106 110 rpmname := $(verpkg)-$(rpmver)_$(rpmrel) 107 endif108 111 109 112 # Fedora13/14 is bleeding edge, the other jails have outdated kernel headers … … 167 170 touch rpm/configure-stamp 168 171 169 rpm/build-stamp $(verfile): rpm/configure-stamp172 rpm/build-stamp: rpm/configure-stamp 170 173 . rpm/env.sh && kmk -C $(vboxroot) $(bld_flags) $(if $(NOPARALLEL),-j1,) all 171 174 $(if $(NODOCS),cp $(vboxroot)/prebuild/UserManual*.pdf $(builddir)/bin,)
Note:
See TracChangeset
for help on using the changeset viewer.