~ubuntu-branches/ubuntu/trusty/virtualbox-lts-xenial/trusty-updates

« back to all changes in this revision

Viewing changes to src/VBox/HostDrivers/VBoxPci/linux/Makefile

  • Committer: Package Import Robot
  • Author(s): Gianfranco Costamagna
  • Date: 2016-02-23 14:28:26 UTC
  • Revision ID: package-import@ubuntu.com-20160223142826-kpprg3lfwn2izud0
Tags: 4.3.36-dfsg-1+deb8u1ubuntu1.14.04.1~14.04.4
Use lts-xenial stack. Build only guest additions (LP: #1424769).

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
  BUILD_TARGET_ARCH := amd64
36
36
 else
37
37
  ifeq ($(ARCH),i386)
38
 
   BUILD_TARGET_ARCH := x86
 
38
   ifeq ($(CONFIG_X86_32),y)
 
39
     BUILD_TARGET_ARCH := x86
 
40
   else
 
41
     BUILD_TARGET_ARCH := amd64
 
42
   endif
39
43
  else
40
 
   BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF)
 
44
   ifeq ($(ARCH),x86)
 
45
     ifeq ($(CONFIG_X86_32),y)
 
46
       BUILD_TARGET_ARCH := x86
 
47
     else
 
48
       BUILD_TARGET_ARCH := amd64
 
49
     endif
 
50
   else
 
51
     BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF)
 
52
   endif
41
53
  endif
42
54
 endif
43
55
else