This URL has Read-Only access.

Statistics
| Branch: | Tag: | Revision:

root / utils / makedist @ 201e2bb8

History | View | Annotate | Download (233 Bytes)

1
#!/bin/bash
2

    
3
if [ ! -f configure.ac ];
4
then
5
    exit 1
6
fi
7
if [ -f configure ]
8
then
9
    if [ ! -f config.log ]
10
    then
11
        ./configure
12
    fi
13
    make distclean
14
fi
15
autoreconf -iv && ./configure && make && fakeroot make distcheck