~ubuntu-branches/ubuntu/oneiric/virtualbox/oneiric-updates

« back to all changes in this revision

Viewing changes to src/VBox/Installer/Makefile.kmk

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2011-09-02 11:50:47 UTC
  • mfrom: (3.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20110902115047-kfhmsikrpydgyoji
Tags: 4.1.2-dfsg-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add Apport hook.
    - debian/virtualbox.files/source_virtualbox.py
    - debian/virtualbox.install
  - Drop *-source packages.
  - Add vboxguest modalias the to the package control field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile.kmk 28800 2010-04-27 08:22:32Z vboxsync $
 
1
# $Id: Makefile.kmk 38082 2011-07-20 14:26:24Z vboxsync $
2
2
## @file
3
3
# Install misc stuff and create dist packages.
4
4
#
45
45
 #
46
46
 # Package the VirtualBox SDK.
47
47
 #
48
 
 VBOX_SDK_ZIP  = $(PATH_BIN)/VirtualBoxSDK-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).zip
 
48
 VBOX_SDK_ZIP  = $(PATH_STAGE_BIN)/VirtualBoxSDK-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).zip
49
49
 PACKING      += $(VBOX_SDK_ZIP)
50
50
 OTHER_CLEANS += $(VBOX_SDK_ZIP) \
51
 
                 $(wildcard $(PATH_BIN)/VirtualBoxSDK-*-r*.zip)
 
51
                 $(wildcard $(PATH_STAGE_BIN)/VirtualBoxSDK-*-r*.zip)
52
52
 
53
53
 VBOX_ZIP     ?= zip
54
54
# @todo: wrong, it must depend on everything included in SDK
55
55
$(VBOX_SDK_ZIP): \
56
 
                $(PATH_BIN)/sdk \
 
56
                $(PATH_STAGE_BIN)/sdk \
57
57
                $(VBOX_VERSION_STAMP)
58
58
        $(call MSG_L1,Making SDK delivery $@)
59
 
        $(QUIET)$(REDIRECT) $(if $(QUIET),-wo /dev/null,) -C $(PATH_BIN) -- $(VBOX_ZIP) -r9 $@ sdk
 
59
        $(QUIET)$(REDIRECT) $(if $(QUIET),-wo /dev/null,) -C $(PATH_STAGE_BIN) -- $(VBOX_ZIP) -r9 $@ sdk
60
60
endif
61
61
 
62
62