Changeset 35936 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- Feb 11, 2011 8:06:56 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69977
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Installer/linux/debian/rules ¶
r35230 r35936 37 37 # NOWEBSVC=1 don't build the webservice API, default for OSE 38 38 # STAGEDISO=<path> don't build the VBoxAdditions, use the precompiled .iso 39 # PKGDIR=<path> where to store the final package(s) 39 40 # BLEEDING_EDGE=xyz 40 41 … … 43 44 current := $(shell pwd) 44 45 vboxroot := $(shell cd ../../../..; pwd) 45 pkgdir := $( shell cd ../../../../..; pwd)46 pkgdir := $(if $(PKGDIR),$(PKGDIR),$(shell cd ../../../../..; pwd)) 46 47 builddir := $(current)/debian/builddir 47 48 moddir := $(current)/debian/modules -
TabularUnified trunk/src/VBox/Installer/linux/rpm/rules ¶
r35230 r35936 33 33 current := $(shell pwd) 34 34 vboxroot := $(shell cd ../../../../; pwd) 35 pkgdir := $( shell cd ../../../../..; pwd)35 pkgdir := $(if $(PKGDIR),$(PKGDIR),$(shell cd ../../../../..; pwd)) 36 36 builddir := $(current)/rpm/builddir 37 37 rpmlib := $(shell if [ `uname -m` = "x86_64" ]; then echo "lib64"; else echo "lib"; fi) … … 188 188 rm -f /usr/src/packages/SPECS/* 189 189 rpmbuild -tb --clean rpm/VirtualBox.tar.bz2 190 mv /usr/src/packages/RPMS/*/$(verpkg)-debug* $( vboxroot)/..|| true190 mv /usr/src/packages/RPMS/*/$(verpkg)-debug* $(pkgdir) || true 191 191 file=`find /usr/src/packages/RPMS -name $(verpkg)*rpm -print`; \ 192 192 mv $$file $(pkgdir)
Note:
See TracChangeset
for help on using the changeset viewer.