- Timestamp:
- Jun 4, 2007, 1:20:00 PM (19 years ago)
- Children:
- 5ecbb4f4
- Parents:
- 5aa46f7
- File:
-
- 1 edited
-
mk/pkg-bottom.mk (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mk/pkg-bottom.mk
r5aa46f7 r62f9c95 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
Note:
See TracChangeset
for help on using the changeset viewer.
