Changeset 2688
- Timestamp:
- 06/04/07 13:20:00 (2 years ago)
- Files:
-
- trunk/freewrt/mk/pkg-bottom.mk (modified) (2 diffs)
- trunk/freewrt/package/mysql/Makefile (modified) (1 diff)
- trunk/freewrt/scripts/automake.dep (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/mk/pkg-bottom.mk
r2620 r2688 16 16 # making the Makefiles of the packages more clear 17 17 18 ifneq ($(filter gnu,${CONFIGURE_STYLE}),) 19 REORDER_DEPENDENCIES+= ${TOPDIR}/scripts/automake.dep 20 endif 21 22 REORDER_DEPENDENCIES?= 23 18 24 #--- configure 19 25 pre-configure: … … 21 27 post-configure: 22 28 ${_CONFIGURE_COOKIE}: ${_PATCH_COOKIE} 29 ifneq ($(strip ${REORDER_DEPENDENCIES}),) 30 @sed -e '/^#/d' ${REORDER_DEPENDENCIES} | \ 31 tsort -r | while read f; do \ 32 cd ${WRKSRC}; \ 33 case $$f in \ 34 /*) \ 35 find . -name "$${f#/}" -print | while read i; do \ 36 echo "Touching $$i"; touch "$$i"; \ 37 done;; \ 38 *) \ 39 if test -e "$$f" ; then \ 40 echo "Touching $$f"; touch "$$f"; \ 41 fi;; \ 42 esac; \ 43 done 44 endif 23 45 mkdir -p ${WRKBUILD} 24 46 @${MAKE} pre-configure trunk/freewrt/package/mysql/Makefile
r2683 r2688 44 44 --without-readline 45 45 46 pre-configure:47 (cd ${WRKBUILD}; \48 touch configure.in; \49 touch aclocal.m4; \50 touch Makefile.in; \51 touch config.h.in; \52 touch configure; \53 )54 55 46 do-build: 56 47 ${MAKE} -C "${WRKBUILD}" \


