author | kergoth <kergoth> | 2003-07-01 14:41:48 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-07-01 14:41:48 (UTC) |
commit | 5f0493c41bc87320cd8eca55d998e05a7550dab7 (patch) (side-by-side diff) | |
tree | d2a761c960d1286defdd293861cd634452101abd /Makefile | |
parent | 99e582c840f0c37d318a28caf69d3ae4eb96bea4 (diff) | |
download | opie-5f0493c41bc87320cd8eca55d998e05a7550dab7.zip opie-5f0493c41bc87320cd8eca55d998e05a7550dab7.tar.gz opie-5f0493c41bc87320cd8eca55d998e05a7550dab7.tar.bz2 |
There's already a lxdialog binary rule in Rules.make, if we specify it with full path using instead of relative. Remove the duplicate lxdialog rule.
-rw-r--r-- | Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -58,39 +58,36 @@ $(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs) $(call descend,scripts/kconfig,conf) @if [ ! -e $@ ]; then \ cp $(TOPDIR)/def-configs/opie $@; \ fi @$(MAKE) -C scripts/kconfig conf ./scripts/kconfig/conf -s ./config.in # config rules must have the $(configs) var defined # at the time that they run. we must ensure that .depends.cfgs # is built and included by the time we reach this point. xconfig : $(call descend,scripts/kconfig,qconf) LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(TOPDIR)/scripts/kconfig \ ./scripts/kconfig/qconf ./config.in -menuconfig : scripts/lxdialog/lxdialog +menuconfig : $(TOPDIR)/scripts/lxdialog/lxdialog $(call descend,scripts/kconfig,mconf) ./scripts/kconfig/mconf ./config.in -scripts/lxdialog/lxdialog: - make -C scripts/lxdialog - config : $(call descend,scripts/kconfig,conf) ./scripts/kconfig/conf ./config.in oldconfig : $(call descend,scripts/kconfig,conf) ./scripts/kconfig/conf -o ./config.in randconfig : $(call descend,scripts/kconfig,conf) ./scripts/kconfig/conf -r ./config.in allyesconfig : $(call descend,scripts/kconfig,conf) ./scripts/kconfig/conf -y ./config.in |