diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-24 11:30:20 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-24 11:30:20 +0100 |
commit | 537a2c4eaa446e52c6ba07007eb9ae75998b5580 (patch) | |
tree | b48cc775042b4274dce470527826007de7a7fa84 /package/base-files/Makefile | |
parent | 18b3987c6d890f02c80b976b6cf6835053ef1fe9 (diff) | |
parent | ce621815fecece2b4d8a4cb7115eb82c1cb7ed44 (diff) |
Merge commit 'origin/confgen'
finally autogenerate menu Config.in files and Depends.mk
for packages. thx mirabilos
Conflicts:
.gitignore
Makefile
mk/build.mk
package/eglibc/Config.in
package/glibc/Config.in
package/uclibc++/Config.in
package/uclibc/Config.in
rules.mk
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 922bdb47e..bff93bd38 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -6,22 +6,18 @@ include $(TOPDIR)/mk/rootfs.mk PKG_NAME:= base-files PKG_VERSION:= 1.0 -PKG_RELEASE:= 8 +PKG_RELEASE:= 9 PKG_DESCR:= basic filesystem structure and scripts PKG_SECTION:= base WRKDIST= ${WRKDIR}/base-files NO_DISTFILES:= 1 -ifeq ($(CPU_ARCH),x86_64) -PKG_ID= x86-64-${FS} -else -PKG_ID= ${ADK_TARGET}-${FS} -endif -WRKDIR= ${WRKDIR_BASE}/w-${PKG_NAME}-${PKG_VERSION}-${PKG_RELEASE}-${PKG_ID} include $(TOPDIR)/mk/package.mk -$(eval $(call PKG_template,BASE_FILES,base-files-${PKG_ID},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) +$(eval $(call PKG_template,BASE_FILES,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +PKGDFLT_BASE_FILES= y if !ADK_TOOLCHAIN_ONLY do-install: $(CP) ./extra/* $(IDIR_BASE_FILES) |