1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-31 01:48:16 +03:00
samba-mirror/packaging/bin/update-pkginfo
John Terpstra ddc6296370 Added packing release script.
(This used to be commit a77d40ee7147207174cde4c7a0f775e588e5a6ba)
1998-11-13 23:10:32 +00:00

16 lines
306 B
Bash
Executable File

#!/bin/bash
VERSION=$1
RELEASE=$2
for f in */*/*.tmpl; do
f2=`echo $f | sed s/.tmpl//g`
echo $f2
sed -e s/PVERSION/$VERSION/g -e s/PRELEASE/$RELEASE/g < $f > $f2
done
for f in */*.tmpl; do
f2=`echo $f | sed s/.tmpl//g`
echo $f2
sed -e s/PVERSION/$VERSION/g -e s/PRELEASE/$RELEASE/g < $f > $f2
done