Overview
Comment: | Fix "make tarball" for new paths. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6b4749adcc4a8e7becb848f43743a09d |
User & Date: | js on 2010-04-30 14:12:19 |
Other Links: | manifest | tags |
Context
2010-04-30
| ||
14:19 | Bump version to 0.4-dev. check-in: 0a92d8b607 user: js tags: trunk | |
14:16 | Branch for 0.3. check-in: 7c4399b41c user: js tags: 0.3 | |
14:12 | Fix "make tarball" for new paths. check-in: 6b4749adcc user: js tags: trunk | |
13:59 | Documentation improvement (replaced "an uint*" with "a uint*"). check-in: e259d77a62 user: js tags: trunk | |
Changes
Modified Makefile from [d02e5befb2] to [ec110bb89c].
1 2 3 4 5 6 7 8 9 | include extra.mk SUBDIRS = src utils ${TESTS} DISTCLEAN = aclocal.m4 \ autom4te.cache \ buildsys.mk \ config.h \ config.log \ config.status \ | | < > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | include extra.mk SUBDIRS = src utils ${TESTS} DISTCLEAN = aclocal.m4 \ autom4te.cache \ buildsys.mk \ config.h \ config.log \ config.status \ extra.mk include buildsys.mk tarball: V=$$(fgrep VERSION= utils/objfw-config.in | \ sed 's/VERSION="\(.*\)"/\1/'); \ V2=$$(fgrep AC_INIT configure.ac | \ sed 's/AC_INIT([^,]*,\([^,]*\),.*/\1/' | sed 's/ //'); \ V3=$$(fgrep -A1 CFBundleVersion Info.plist | tail -1 | \ sed 's/.*>\(.*\)<.*/\1/'); \ V4=$$(fgrep -A1 CFBundleShortVersion Info.plist | tail -1 | \ sed 's/.*>\(.*\)<.*/\1/'); \ if test x"$$V2" != x"$$V" \ |
︙ | ︙ |
Modified utils/Makefile from [6b1e7b4aff] to [aaa30146b1].
1 2 3 4 5 6 7 8 | include ../buildsys.mk install-extra: for i in objfw-config objfw-compile; do \ ${INSTALL_STATUS}; \ if ${MKDIR_P} ${DESTDIR}${bindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${bindir}/$$i; then \ ${INSTALL_OK}; \ else \ | > > | 1 2 3 4 5 6 7 8 9 10 | include ../buildsys.mk DISTCLEAN = objfw-config install-extra: for i in objfw-config objfw-compile; do \ ${INSTALL_STATUS}; \ if ${MKDIR_P} ${DESTDIR}${bindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${bindir}/$$i; then \ ${INSTALL_OK}; \ else \ |
︙ | ︙ |