ia64-build-static-tools
authormaximilian attems <maks@debian.org>
Sun, 6 Jan 2019 19:33:01 +0000 (19:33 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Sun, 6 Jan 2019 19:33:01 +0000 (19:33 +0000)
Gbp-Pq: Name ia64-build-static-tools.patch

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..fc9a54a653645a465cc4ca5e2027068b78ab8223 100644 (file)
@@ -93,4 +93,8 @@ $(obj)/syntax.h: $(obj)/syntax.c
        $(Q):
 
 # Targets to install
-install-y := sh.shared
+ifeq ($(ARCH),ia64)
+      install-y := sh
+else
+      install-y := sh.shared
+endif
index 9b20db1625b48a9c5ec16a3a5a4f3efdb5f829fb..550f7d3da261771cd8de6cb820ce716349003296 100644 (file)
@@ -22,4 +22,8 @@ shared/fstype-y := $(objs)
 clean-dirs := static shared
 
 # install binary
-install-y := $(shared-y)
+ifeq ($(ARCH),ia64)
+      install-y := $(static-y)
+else
+      install-y := $(shared-y)
+endif
index 7f8d1813cdfa1f15b2aedcd8783482ae95f6dd12..9a7dec1d557f7e1baa35d5c217af0e18ea7ddd32 100644 (file)
@@ -28,4 +28,8 @@ shared/ipconfig-y := $(objs)
 clean-dirs := static shared
 
 # install binary
-install-y := $(shared-y)
+ifeq ($(ARCH),ia64)
+      install-y := $(static-y)
+else
+      install-y := $(shared-y)
+endif
index 461e6f378b7532c879a9e3ba29af1c189ca0574f..4744864bebdd177f77ec073b3d15142e1c7030b7 100644 (file)
@@ -24,4 +24,8 @@ dummypmap-y := dummypmap_test.o
 clean-dirs := static shared
 
 # Install binary
-install-y := $(shared-y)
+ifeq ($(ARCH),ia64)
+      install-y := $(static-y)
+else
+      install-y := $(shared-y)
+endif
index 034195d2ad2a940469093eac6c7e9ad397e0865e..e4af3ad31764ed3e24299b213a33237c45c898a8 100644 (file)
@@ -27,4 +27,8 @@ shared/resume-lib := ../lib.a
 clean-dirs := static shared
 
 # install binary
-install-y := $(shared-y)
+ifeq ($(ARCH),ia64)
+      install-y := $(static-y)
+else
+      install-y := $(shared-y)
+endif
index f7832b7d0bee6783592aa1d84e69dd908bfed957..96e91e7aba3fba14e51c89fb512ae01f728c0417 100644 (file)
@@ -31,4 +31,8 @@ shared/run-init-lib := ../lib.a
 clean-dirs := static shared
 
 # install binary
-install-y := $(shared-y)
+ifeq ($(ARCH),ia64)
+      install-y := $(static-y)
+else
+      install-y := $(shared-y)
+endif
index 05aa794f481d39d674792e325c4d6b13c63b00fb..01d2a38dccc9c1096fa373a5c296dea24d4c08e5 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
-install-y := $(shared-y) shared/reboot shared/poweroff
+ifeq ($(ARCH),ia64)
+      install-y := $(static-y) static/reboot static/poweroff
+else
+      install-y := $(shared-y) shared/reboot shared/poweroff
+endif