]> andersk Git - splint.git/blame - fixBinaryDist.sh
noexpand always false.
[splint.git] / fixBinaryDist.sh
CommitLineData
363a5c93 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
6pwd
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
12rm Makefile.am
f0c4f4d3 13rm configure.ac
363a5c93 14
f0c4f4d3 15mv Makefile.binary.am Makefile.am
16mv configure.binary.ac configure.ac
17sleep 3
18mv configure.binary configure
19
20
21#should probably do this in Makefile but it doesn't seem to work..
22sed -e 's/Makefile\.binary/Makefile/' Makefile.binary.in > Makefile.in
23rm Makefile.binary.in
363a5c93 24#run these if possible...
f0c4f4d3 25#autoconf
26#automake
fc97bef4 27mkdir src || echo "COULD NOT MAKE src tar ball may be incorrect"
28echo "Created this file because some versions of tar are too simple include this directory without it" > src/dummy
29
30# Need to do this in the makefile because the tar command in make dist wants to derefence symlinks
31#ln -s ../bin/splint src/splint
This page took 0.137784 seconds and 5 git commands to generate.