diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-03 06:16:08 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-03 06:16:08 +0000 |
commit | cc690d782c81197478adcdb5fb99061969adf756 (patch) | |
tree | 18bb45870827d180a6b4d8dea7ddd96da33f186f /include/package.mk | |
parent | 34a7bd751b696033630c718cd56d2f0d4e389dca (diff) | |
download | upstream-cc690d782c81197478adcdb5fb99061969adf756.tar.gz upstream-cc690d782c81197478adcdb5fb99061969adf756.tar.bz2 upstream-cc690d782c81197478adcdb5fb99061969adf756.zip |
Add quilt integration for packages
make package/<package>-prepare QUILT=1 will apply all patches using quilt
Autorebuild will be disabled, so that you can edit all patches in the build dir.
When you're done editing patches and everything works, you can call:
make package/<package>-refresh
That will copy the updated patches from quilt into package/<package>/patches,
and remove all old patches.
Before the patches are overwritten, the correct order of the patches is verified
('cat series' is compared against 'sort series').
SVN-Revision: 7471
Diffstat (limited to 'include/package.mk')
-rw-r--r-- | include/package.mk | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/package.mk b/include/package.mk index 3e2944fbdc..daff3ed0d6 100644 --- a/include/package.mk +++ b/include/package.mk @@ -14,13 +14,16 @@ include $(INCLUDE_DIR)/prereq.mk include $(INCLUDE_DIR)/host.mk include $(INCLUDE_DIR)/unpack.mk include $(INCLUDE_DIR)/depends.mk -include $(INCLUDE_DIR)/package-defaults.mk -include $(INCLUDE_DIR)/package-dumpinfo.mk -include $(INCLUDE_DIR)/package-ipkg.mk STAMP_PREPARED:=$(PKG_BUILD_DIR)/.prepared$(if $(DUMP),,_$(shell find ${CURDIR} $(PKG_FILE_DEPEND) $(DEP_FINDPARAMS) | md5s)) STAMP_CONFIGURED:=$(PKG_BUILD_DIR)/.configured STAMP_BUILT:=$(PKG_BUILD_DIR)/.built + +include $(INCLUDE_DIR)/quilt.mk +include $(INCLUDE_DIR)/package-defaults.mk +include $(INCLUDE_DIR)/package-dumpinfo.mk +include $(INCLUDE_DIR)/package-ipkg.mk + export CONFIG_SITE:=$(INCLUDE_DIR)/site/$(REAL_GNU_TARGET_NAME) ifneq ($(CONFIG_AUTOREBUILD),) |