| 
            Last change
 on this file since 99fc978 was             f575124, checked in by Thierry Delisle <tdelisle@…>, 5 years ago           | 
        
        
          | 
             
Added script to setup automake before running configure 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100755
               
             
           | 
        
        
          | 
            File size:
            626 bytes
           | 
        
      
      
| Line |   | 
|---|
| 1 | #!/bin/sh -e
 | 
|---|
| 2 | mkdir -p automake
 | 
|---|
| 3 | 
 | 
|---|
| 4 | #-------------------
 | 
|---|
| 5 | echo "Running aclocal in root"
 | 
|---|
| 6 | aclocal
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #-------------------
 | 
|---|
| 9 | echo "Running libtoolize in root"
 | 
|---|
| 10 | libtoolize
 | 
|---|
| 11 | 
 | 
|---|
| 12 | #-------------------
 | 
|---|
| 13 | echo "Running autoconf in root"
 | 
|---|
| 14 | autoconf
 | 
|---|
| 15 | 
 | 
|---|
| 16 | #-------------------
 | 
|---|
| 17 | echo "Running automake in root"
 | 
|---|
| 18 | automake --add-missing
 | 
|---|
| 19 | 
 | 
|---|
| 20 | 
 | 
|---|
| 21 | #-------------------
 | 
|---|
| 22 | cd libcfa
 | 
|---|
| 23 | mkdir -p automake
 | 
|---|
| 24 | 
 | 
|---|
| 25 | #-------------------
 | 
|---|
| 26 | echo "Running aclocal in libcfa"
 | 
|---|
| 27 | aclocal
 | 
|---|
| 28 | 
 | 
|---|
| 29 | #-------------------
 | 
|---|
| 30 | echo "Running libtoolize in libcfa"
 | 
|---|
| 31 | libtoolize
 | 
|---|
| 32 | 
 | 
|---|
| 33 | #-------------------
 | 
|---|
| 34 | echo "Running autoconf in libcfa"
 | 
|---|
| 35 | autoconf
 | 
|---|
| 36 | 
 | 
|---|
| 37 | #-------------------
 | 
|---|
| 38 | echo "Running automake in libcfa"
 | 
|---|
| 39 | automake --add-missing
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.