fix InstallDev bug
SVN-Revision: 3880
This commit is contained in:
parent
e0b3512e74
commit
e5fda9318f
1 changed files with 4 additions and 10 deletions
|
@ -32,6 +32,10 @@ define Build/DefaultTargets
|
||||||
$(PKG_BUILD_DIR)/.dev-installed: $(PKG_BUILD_DIR)/.built
|
$(PKG_BUILD_DIR)/.dev-installed: $(PKG_BUILD_DIR)/.built
|
||||||
$(call Build/InstallDev)
|
$(call Build/InstallDev)
|
||||||
touch $$@
|
touch $$@
|
||||||
|
|
||||||
|
ifdef Build/InstallDev
|
||||||
|
compile-targets: $(PKG_BUILD_DIR)/.dev-installed
|
||||||
|
endif
|
||||||
|
|
||||||
package-clean: FORCE
|
package-clean: FORCE
|
||||||
$(call Build/Clean)
|
$(call Build/Clean)
|
||||||
|
@ -241,16 +245,10 @@ define Build/Compile
|
||||||
$(call Build/Compile/Default,)
|
$(call Build/Compile/Default,)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/InstallDev
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/Clean
|
define Build/Clean
|
||||||
$(MAKE) clean
|
$(MAKE) clean
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/UninstallDev
|
|
||||||
endef
|
|
||||||
|
|
||||||
ifneq ($(DUMP),)
|
ifneq ($(DUMP),)
|
||||||
dumpinfo: FORCE
|
dumpinfo: FORCE
|
||||||
@$(DUMPINFO)
|
@$(DUMPINFO)
|
||||||
|
@ -263,11 +261,7 @@ else
|
||||||
prepare: $(PKG_BUILD_DIR)/.prepared
|
prepare: $(PKG_BUILD_DIR)/.prepared
|
||||||
configure: $(PKG_BUILD_DIR)/.configured
|
configure: $(PKG_BUILD_DIR)/.configured
|
||||||
|
|
||||||
ifdef Build/InstallDev
|
|
||||||
compile-targets: $(PKG_BUILD_DIR)/.dev-installed
|
|
||||||
else
|
|
||||||
compile-targets:
|
compile-targets:
|
||||||
endif
|
|
||||||
compile: compile-targets
|
compile: compile-targets
|
||||||
|
|
||||||
install-targets:
|
install-targets:
|
||||||
|
|
Loading…
Reference in a new issue