Check-in [a0d2d37cfe]
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: a0d2d37cfeecd941098f8cabbe60a3b14a9fd5c0d386e27de80714568ad5135a
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

3
4




5
6
#! /usr/bin/env bash


./autogen.sh || exit 1
rm -rf aclocal





exit 0


>
|

>
>
>
>


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