From 39f565a7f448ab2d80ea9bb491265c827c31f717 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 18 May 2019 17:12:50 -0400 Subject: config, build: Simplify targets --- (limited to 'config') diff --git a/config b/config index 22b56f0..a44a6c3 100755 --- a/config +++ b/config @@ -20,17 +20,11 @@ main() PKG_TARGET_ARCH="${arch}" configure_build done >targets.mk - for stamp in configure build buildnative buildcross \ - install installnative installcross; do - printf '%s_targets = \\\n' "${stamp}" \ - >>targets.mk - for arch in ${PKG_TARGETS}; do - printf '\t%s-%s \\\n' \ - "${stamp}" "${arch}" \ - >>targets.mk - done - printf '\n' >>targets.mk + printf 'targets = \\\n' >>targets.mk + for arch in ${PKG_TARGETS}; do + printf '\t%s \\\n' "${arch}" >>targets.mk done + printf '\n' >>targets.mk ;; esac } -- cgit v0.9.1