~ubuntu-branches/ubuntu/wily/libsocketcan/wily

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Package Import Robot
  • Author(s): Alexander GQ Gerasiov
  • Date: 2014-03-18 18:47:57 UTC
  • Revision ID: package-import@ubuntu.com-20140318184757-0ri1lkf00s2mx3gd
Tags: upstream-0.0.9+git20140207
ImportĀ upstreamĀ versionĀ 0.0.9+git20140207

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
#
 
4
# usage:
 
5
#
 
6
# banner <target name>
 
7
#
 
8
banner() {
 
9
        echo
 
10
        TG=`echo $1 | sed -e "s,/.*/,,g"`
 
11
        LINE=`echo $TG |sed -e "s/./-/g"`
 
12
        echo $LINE
 
13
        echo $TG
 
14
        echo $LINE
 
15
        echo
 
16
}
 
17
 
 
18
banner "autoreconf"
 
19
 
 
20
autoreconf --force --install --symlink -Wall || exit $?
 
21
 
 
22
banner "Finished"