diff options
-rwxr-xr-x | config | 4 | ||||
-rw-r--r-- | targets.in | 4 |
2 files changed, 7 insertions, 1 deletions
@@ -11,7 +11,9 @@ main() clean ;; *) - # TODO: If PKG_TARGET_ARCH is empty, set it to all supported arches. + if [ -z "${PKG_TARGETS}" ]; then + PKG_TARGETS="$(cat targets.in)" + fi for arch in ${PKG_TARGETS}; do PKG_TARGET_ARCH="${arch}" configure_build done diff --git a/targets.in b/targets.in new file mode 100644 index 0000000..d2bfce2 --- /dev/null +++ b/targets.in @@ -0,0 +1,4 @@ +core-linux-eglibc +i686-linux-eglibc +i686-kfreebsd-eglibc +cortexa8-linux-eglibc |