• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

The MinGW.org Installation Manager Tool


Commit MetaInfo

Revision3e06b84754cfb0c844d0c7dc455fbfec9b821776 (tree)
Zeit2011-11-07 06:30:14
AutorKeith Marshall <keithmarshall@user...>
CommiterKeith Marshall

Log Message

Fix packaging anomalies for source and licence distributions.

Ändern Zusammenfassung

Diff

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
11 2011-11-06 Keith Marshall <keithmarshall@users.sourceforge.net>
22
3+ Fix packaging anomalies for source and licence distributions.
4+
5+ * Makefile.in (licdist): Link README from ${CURDIR}, not from '..'.
6+ (srcdist): Explicitly link pkginfo.c from ${CURDIR} to src/pkginfo,
7+ rather than as implied prerequisite; this avoids a bogus attempt to
8+ link srcdist-doc into src/pkginfo.
9+
10+2011-11-06 Keith Marshall <keithmarshall@users.sourceforge.net>
11+
312 Bump version number for subsequent CVS snapshots.
413
514 * configure.ac (AC_INIT): Set version to 0.4-alpha-1.1cvs
--- a/Makefile.in
+++ b/Makefile.in
@@ -199,12 +199,12 @@ licdist:
199199 cd ./share/doc/${PACKAGE_TARNAME}; for file in $(LICENCE_FILES); \
200200 do test -f ${abs_top_srcdir}/$$file \
201201 && $(LN_S) ${abs_top_srcdir}/$$file . \
202- || $(LN_S) ../$$file .; \
202+ || $(LN_S) ${CURDIR}/$$file .; \
203203 done
204204 tar chf - share | $(TARZIP) -c > $(PACKAGE_DISTNAME)-lic.$(TAREXT)
205205 rm -rf share
206206
207-srcdist: pkginfo.c srcdist-doc
207+srcdist: srcdist-doc
208208 rm -rf ${PACKAGE_DISTROOT} && mkdir ${PACKAGE_DISTROOT}
209209 cd ${PACKAGE_DISTROOT}; for file in $(SRCDIST_FILES); do \
210210 test -f ${abs_top_srcdir}/$$file \
@@ -219,7 +219,7 @@ srcdist: pkginfo.c srcdist-doc
219219 fi; \
220220 done; \
221221 cd ${CURDIR}; done
222- cd ${PACKAGE_DISTROOT}/src/pkginfo; $(LN_S) ${CURDIR}/$^ .
222+ cd ${PACKAGE_DISTROOT}/src/pkginfo; $(LN_S) ${CURDIR}/pkginfo.c .
223223 tar chf - ${PACKAGE_DISTROOT} | $(TARZIP) -c > \
224224 ${PACKAGE_DISTNAME}-src.$(TAREXT)
225225 rm -rf ${PACKAGE_DISTROOT}