ia64-static
authormaximilian attems <maks@debian.org>
Sun, 5 Oct 2014 00:13:31 +0000 (00:13 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Sun, 5 Oct 2014 00:13:31 +0000 (00:13 +0000)
Gbp-Pq: Name ia64-static

usr/dash/Kbuild
usr/kinit/fstype/Kbuild
usr/kinit/ipconfig/Kbuild
usr/kinit/nfsmount/Kbuild
usr/kinit/resume/Kbuild
usr/kinit/run-init/Kbuild
usr/utils/Kbuild

index 3a98c1f5ba3d0a3aa7db2b98272497c1e9dac7e5..fa269529d6324d901c51021f556e1822fc9d9f86 100644 (file)
@@ -93,4 +93,8 @@ $(obj)/syntax.h: $(obj)/syntax.c
        $(Q):
 
 # Targets to install
+ifeq ($(ARCH),ia64)
+install-y := sh
+else
 install-y := sh.shared
+endif
index 9b20db1625b48a9c5ec16a3a5a4f3efdb5f829fb..cfc5dd7306440a3064d541e1a29f9f032926987d 100644 (file)
@@ -22,4 +22,8 @@ shared/fstype-y := $(objs)
 clean-dirs := static shared
 
 # install binary
+ifeq ($(ARCH),ia64)
+install-y := $(static-y)
+else
 install-y := $(shared-y)
+endif
index 7f8d1813cdfa1f15b2aedcd8783482ae95f6dd12..7d67802f647035dff06d9b856f73bcd07aefbdec 100644 (file)
@@ -28,4 +28,8 @@ shared/ipconfig-y := $(objs)
 clean-dirs := static shared
 
 # install binary
+ifeq ($(ARCH),ia64)
+install-y := $(static-y)
+else
 install-y := $(shared-y)
+endif
index 461e6f378b7532c879a9e3ba29af1c189ca0574f..af5e78fcf1b3815bb0cac0fe4abaf5ff0807f97f 100644 (file)
@@ -24,4 +24,8 @@ dummypmap-y := dummypmap_test.o
 clean-dirs := static shared
 
 # Install binary
+ifeq ($(ARCH),ia64)
+install-y := $(static-y)
+else
 install-y := $(shared-y)
+endif
index 034195d2ad2a940469093eac6c7e9ad397e0865e..f8d1f477c5b60ef0416f36b68cd9fb72baa5ed66 100644 (file)
@@ -27,4 +27,8 @@ shared/resume-lib := ../lib.a
 clean-dirs := static shared
 
 # install binary
+ifeq ($(ARCH),ia64)
+install-y := $(static-y)
+else
 install-y := $(shared-y)
+endif
index f7832b7d0bee6783592aa1d84e69dd908bfed957..1a63a2b992245b6e04c7f4ccf4af174cd43d372c 100644 (file)
@@ -31,4 +31,8 @@ shared/run-init-lib := ../lib.a
 clean-dirs := static shared
 
 # install binary
+ifeq ($(ARCH),ia64)
+install-y := $(static-y)
+else
 install-y := $(shared-y)
+endif
index 05aa794f481d39d674792e325c4d6b13c63b00fb..db02286d88f013993e8a0c5e63803e88b618ae51 100644 (file)
@@ -73,4 +73,8 @@ $(obj)/shared/reboot $(obj)/shared/poweroff: $(obj)/shared/halt
 clean-dirs := static shared
 
 # install only install the shared binaries
+ifeq ($(ARCH),ia64)
+install-y := $(static-y) static/reboot static/poweroff
+else
 install-y := $(shared-y) shared/reboot shared/poweroff
+endif