From d1edbee3948b9a668d22e574565258d03a171069 Mon Sep 17 00:00:00 2001 From: bryan Date: Sat, 14 Jan 2023 13:56:41 -0500 Subject: [PATCH] Tidy output --- openwrtbuilder | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openwrtbuilder b/openwrtbuilder index abaf2f4..4145881 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -565,7 +565,7 @@ fromSource() { fi fi if [[ -f "$SEED_FILE" ]]; then - echo "Reusing existing $SEED_FILE" + echo "Reusing existing $SEED_FILE seed config" else if ! curl -so "$SEED_FILE" "$SEED_URL"; then echo "Could not obtain seed config" @@ -593,6 +593,7 @@ fromSource() { echo "CONFIG_TARGET_MULTI_PROFILE=n" >> "$SEED_FILE" sed -i '/CONFIG_TARGET_DEVICE_/d' "$SEED_FILE" echo "CONFIG_TARGET_DEVICE_${P_ARR[target]//\//_}_DEVICE_${P_ARR[profile]}=y" >> "$SEED_FILE" + # output to bindir instead of builddir echo "CONFIG_BINARY_FOLDER=\"$THIS_BINDIR\"" >> "$SEED_FILE" make targetclean