Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix "make dist", which was broken due to the configure.in -> configure.ac name change. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9cf2eadee7f1b50337872928a4e2a40d |
User & Date: | jan.nijtmans 2015-06-12 10:53:35.002 |
Context
2015-08-20
| ||
15:06 | Fix 00189c4afc: Allow semi-static UCRT build on Windows with VC 14.0 check-in: 391bb1f537 user: jan.nijtmans tags: trunk | |
2015-06-12
| ||
10:53 | Fix "make dist", which was broken due to the configure.in -> configure.ac name change. check-in: 9cf2eadee7 user: jan.nijtmans tags: trunk | |
2015-04-21
| ||
10:55 | Fix execute permission on a lot of files (caused by using older cygwin dll when checking out ...) check-in: f370bff0fe user: jan.nijtmans tags: trunk | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
312 313 314 315 316 317 318 | dist-clean: rm -rf $(DIST_DIR) $(DIST_ROOT)/$(PKG_DIR).tar.* dist: dist-clean $(INSTALL_DATA_DIR) $(DIST_DIR) cp -p $(srcdir)/ChangeLog $(srcdir)/README* $(srcdir)/license* \ $(srcdir)/aclocal.m4 $(srcdir)/configure $(srcdir)/*.in \ | | | 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | dist-clean: rm -rf $(DIST_DIR) $(DIST_ROOT)/$(PKG_DIR).tar.* dist: dist-clean $(INSTALL_DATA_DIR) $(DIST_DIR) cp -p $(srcdir)/ChangeLog $(srcdir)/README* $(srcdir)/license* \ $(srcdir)/aclocal.m4 $(srcdir)/configure $(srcdir)/*.in \ $(srcdir)/configure.ac $(DIST_DIR)/ chmod 664 $(DIST_DIR)/Makefile.in $(DIST_DIR)/aclocal.m4 chmod 775 $(DIST_DIR)/configure $(DIST_DIR)/configure.ac for i in $(srcdir)/*.[ch]; do \ if [ -f $$i ]; then \ cp -p $$i $(DIST_DIR)/ ; \ fi; \ |
︙ | ︙ |