~gz/ubuntu/wily/steam/new_rel_udev_rules

« back to all changes in this revision

Viewing changes to bootstrap

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-10-29 19:51:18 UTC
  • mfrom: (1.1.4) (0.1.4 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029195118-b9bxciz5hwx5z459
Tags: 1:1.0.0.39-2ubuntu1
Add an epoch to the version number as there was an unrelated steam package
in the archive with a higher version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
if test -f configure.ac; then
3
 
    autoconf
4
 
fi
5
 
 
6
 
for a in sources spm; do
7
 
   cd $a
8
 
   if test -f configure.ac; then
9
 
       aclocal
10
 
       #autoheader
11
 
       autoconf
12
 
   fi
13
 
   if test -f build; then
14
 
       /bin/sh ./build
15
 
   fi
16
 
   cd ..
17
 
done
18