summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rwxr-xr-xconfig14
1 files changed, 4 insertions, 10 deletions
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
}