Overview
Comment: | Remove mrproper from distributed Makefile, since it is only for internal use |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a0d2d37cfeecd941098f8cabbe60a3b1 |
User & Date: | rkeene on 2018-07-08 21:39:23 |
Other Links: | manifest | tags |
Context
2018-07-08
| ||
21:41 | Keep tests around check-in: cdc1c61304 user: rkeene tags: trunk | |
21:39 | Remove mrproper from distributed Makefile, since it is only for internal use check-in: a0d2d37cfe user: rkeene tags: trunk | |
21:34 | Make mrproper even more proper check-in: 12833ef0b7 user: rkeene tags: trunk | |
Changes
Modified build/pre.sh from [5b92f77928] to [909960a64c].
1 2 | #! /usr/bin/env bash | > | > > > > | 1 2 3 4 5 6 7 8 9 10 11 | #! /usr/bin/env bash set -e ./autogen.sh rm -rf aclocal cat Makefile.in | sed '/^mrproper:/,/^$/ d' > Makefile.in.new cat Makefile.in.new > Makefile.in rm -f Makefile.in.new exit 0 |