]> andersk Git - splint.git/blob - fixBinaryDist.sh
Meaningless changes made to test cvs.
[splint.git] / fixBinaryDist.sh
1 #!/bin/sh
2
3 #This script is intended to be called in make dist
4 #THis is intended to be run in the distribution directory...
5
6 pwd
7 #echo doing bash
8 #bash
9
10 #Need to do this so modifications to the destination directory won't effect
11 #the real directory 
12 rm Makefile.am
13 rm configure.ac 
14 cp  Makefile.binary.am Makefile.am
15 cp  configure.binary.ac configure.ac
16 cp configure.binary configure
17 cp Makefile.binary.in Makefile.in
18
19 #run these if possible...
20 autoconf
21 automake
22 mkdir src || echo "COULD NOT MAKE src tar ball may be incorrect"
23 echo "Created this file because some versions of tar are too simple include this directory without it"  > src/dummy
24
25 # Need to do this in the makefile because the tar command in make dist wants to derefence symlinks
26 #ln -s ../bin/splint src/splint
This page took 0.036693 seconds and 5 git commands to generate.