13 lines
439 B
Bash
13 lines
439 B
Bash
#! /bin/sh
|
|
# createSoftLinks.sh
|
|
# $Id$
|
|
|
|
# Tailored script to create local softlinks releative to this directory
|
|
# the name createSoftLinks.sh is a key and must not be changed. If the
|
|
# release tool sccsGet finds a file by the name of (createSoftLinks.sh),
|
|
# after it has retrieved any out-of-date SCCS files, it invokes the
|
|
# script to create the defined softlinks
|
|
|
|
/bin/rm -f epicsVersion.h
|
|
ln -s ../version/epicsVersion.h epicsVersion.h
|