mirror of https://github.com/hak5/openwrt-owl.git
store stamp file for 'development headers installed' in the staging dir instead of the package dir
SVN-Revision: 3895owl
parent
3975a3e97e
commit
83acc2352b
|
@ -29,17 +29,18 @@ define Build/DefaultTargets
|
||||||
$(call Build/Compile)
|
$(call Build/Compile)
|
||||||
touch $$@
|
touch $$@
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.dev-installed: $(PKG_BUILD_DIR)/.built
|
$(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed: $(PKG_BUILD_DIR)/.built
|
||||||
$(call Build/InstallDev)
|
$(call Build/InstallDev)
|
||||||
touch $$@
|
touch $$@
|
||||||
|
|
||||||
ifdef Build/InstallDev
|
ifdef Build/InstallDev
|
||||||
compile-targets: $(PKG_BUILD_DIR)/.dev-installed
|
compile-targets: $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed
|
||||||
endif
|
endif
|
||||||
|
|
||||||
package-clean: FORCE
|
package-clean: FORCE
|
||||||
$(call Build/Clean)
|
$(call Build/Clean)
|
||||||
$(call Build/UninstallDev)
|
$(call Build/UninstallDev)
|
||||||
|
rm -f $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed
|
||||||
|
|
||||||
package-rebuild: FORCE
|
package-rebuild: FORCE
|
||||||
@-rm $(PKG_BUILD_DIR)/.built
|
@-rm $(PKG_BUILD_DIR)/.built
|
||||||
|
|
Loading…
Reference in New Issue