summaryrefslogtreecommitdiff
path: root/strata/build-essential/stage2-linux-api-headers.morph
diff options
context:
space:
mode:
Diffstat (limited to 'strata/build-essential/stage2-linux-api-headers.morph')
-rw-r--r--strata/build-essential/stage2-linux-api-headers.morph24
1 files changed, 0 insertions, 24 deletions
diff --git a/strata/build-essential/stage2-linux-api-headers.morph b/strata/build-essential/stage2-linux-api-headers.morph
deleted file mode 100644
index 1da94ee9..00000000
--- a/strata/build-essential/stage2-linux-api-headers.morph
+++ /dev/null
@@ -1,24 +0,0 @@
-name: stage2-linux-api-headers
-kind: chunk
-install-commands:
-- |
- case "$MORPH_ARCH" in
- armv5l)
- ARCH="arm" ;;
- armv7b|armv7l|armv7lhf)
- ARCH="arm" ;;
- armv8l64|armv8b64)
- ARCH="arm64" ;;
- x86_32)
- ARCH="i386" ;;
- x86_64)
- ARCH="x86_64" ;;
- ppc64)
- ARCH="powerpc" ;;
- *)
- echo "Error: unsupported Morph architecture: $MORPH_ARCH" >&2
- exit 1
- esac
- ARCH=$ARCH make INSTALL_HDR_PATH=dest headers_install
-- install -d "$DESTDIR${PREFIX-/usr}/include"
-- cp -r dest/include/* "$DESTDIR/${PREFIX-/usr}/include"