Bug 3109 - abnormal `make busybox-menuconfig`
Summary: abnormal `make busybox-menuconfig`
Status: RESOLVED FIXED
Alias: None
Product: buildroot
Classification: Unclassified
Component: Other (show other bugs)
Version: unspecified
Hardware: All Linux
: P5 enhancement
Target Milestone: ---
Assignee: unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-18 06:42 UTC by Kim Jae-hui
Modified: 2011-01-18 08:25 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kim Jae-hui 2011-01-18 06:42:50 UTC
After 69df644f5c539760cc4fd425571ee9d6dc4295b3 commit,
`make busybox-menuconfig` is same as `make menuconfig`.
So, I suggest a patch below.

diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index 38897f7..5583bc6 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -151,7 +151,7 @@ endef
 $(eval $(call GENTARGETS,package,busybox))
 
 busybox-menuconfig:    $(BUSYBOX_DIR)/.stamp_extracted
-       $(BUSYBOX_MAKE_ENV) $(MAKE) $(BUSYBOX_MAKE_OPTS) -C $(@D) menuconfig
+       $(BUSYBOX_MAKE_ENV) $(MAKE) $(BUSYBOX_MAKE_OPTS) -C $(BUSYBOX_DIR) menuc
        rm -f $(BUSYBOX_DIR)/.stamp_built
        rm -f $(BUSYBOX_DIR)/.stamp_target_installed
Comment 1 Peter Korsgaard 2011-01-18 08:25:39 UTC
Hmm, I thought we had already fixed this once. Anyway, thanks, committed.