diff options
-rw-r--r-- | profiles/arch/alpha/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/arm/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/arm64/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/hppa/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/mips/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/ppc/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/ppc64/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/sparc64/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/x86/make.defaults | 1 | ||||
-rw-r--r-- | profiles/arch/x86_64/make.defaults | 1 | ||||
-rw-r--r-- | profiles/base/make.defaults | 5 |
11 files changed, 15 insertions, 0 deletions
diff --git a/profiles/arch/alpha/make.defaults b/profiles/arch/alpha/make.defaults new file mode 100644 index 000000000..4ea41dbc6 --- /dev/null +++ b/profiles/arch/alpha/make.defaults @@ -0,0 +1 @@ +ARCH=alpha diff --git a/profiles/arch/arm/make.defaults b/profiles/arch/arm/make.defaults new file mode 100644 index 000000000..c2bd556d3 --- /dev/null +++ b/profiles/arch/arm/make.defaults @@ -0,0 +1 @@ +ARCH=arm diff --git a/profiles/arch/arm64/make.defaults b/profiles/arch/arm64/make.defaults new file mode 100644 index 000000000..c6b56f9fd --- /dev/null +++ b/profiles/arch/arm64/make.defaults @@ -0,0 +1 @@ +ARCH=arm64 diff --git a/profiles/arch/hppa/make.defaults b/profiles/arch/hppa/make.defaults new file mode 100644 index 000000000..c2b2c7e9f --- /dev/null +++ b/profiles/arch/hppa/make.defaults @@ -0,0 +1 @@ +ARCH=hppa diff --git a/profiles/arch/mips/make.defaults b/profiles/arch/mips/make.defaults new file mode 100644 index 000000000..4d2ef94ae --- /dev/null +++ b/profiles/arch/mips/make.defaults @@ -0,0 +1 @@ +ARCH=mips diff --git a/profiles/arch/ppc/make.defaults b/profiles/arch/ppc/make.defaults new file mode 100644 index 000000000..c07272555 --- /dev/null +++ b/profiles/arch/ppc/make.defaults @@ -0,0 +1 @@ +ARCH=ppc diff --git a/profiles/arch/ppc64/make.defaults b/profiles/arch/ppc64/make.defaults new file mode 100644 index 000000000..00d069092 --- /dev/null +++ b/profiles/arch/ppc64/make.defaults @@ -0,0 +1 @@ +ARCH=ppc64 diff --git a/profiles/arch/sparc64/make.defaults b/profiles/arch/sparc64/make.defaults new file mode 100644 index 000000000..06b2dc819 --- /dev/null +++ b/profiles/arch/sparc64/make.defaults @@ -0,0 +1 @@ +ARCH=sparc64 diff --git a/profiles/arch/x86/make.defaults b/profiles/arch/x86/make.defaults new file mode 100644 index 000000000..8cc538311 --- /dev/null +++ b/profiles/arch/x86/make.defaults @@ -0,0 +1 @@ +ARCH=x86 diff --git a/profiles/arch/x86_64/make.defaults b/profiles/arch/x86_64/make.defaults new file mode 100644 index 000000000..7315763c5 --- /dev/null +++ b/profiles/arch/x86_64/make.defaults @@ -0,0 +1 @@ +ARCH=x86_64 diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults index f42645e2d..cc2aad17d 100644 --- a/profiles/base/make.defaults +++ b/profiles/base/make.defaults @@ -40,3 +40,8 @@ PYTHON_SINGLE_TARGET="python3_5" # These USE will be forced onto every system running Adélie. DO NOT MODIFY THIS LIGHTLY! USE="cxx modules xattr" + +# Auto-build .apks, always +PORTAGE_BINPKG_FORMAT="apk" +FEATURES="buildpkg" + |