1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

packaging: use "find" instead of "du" to find files... :-)

Michael
(This used to be commit 768aa82361)
This commit is contained in:
Michael Adam 2008-09-12 15:07:00 +02:00
parent cf3d089afa
commit fd7635a116

View File

@ -17,7 +17,7 @@ fi
# PREV=`echo ${REVISION} | sed 's/[^0-9]//g'`
# PREV="."`echo ${REVISION} | sed 's/[0-9]//g'`".${PREV}"
for f in `du -a | awk '{print $2}' | grep \.tmpl$`; do
for f in `find . -type f -name "*.tmpl"`; do
f2=`echo $f | sed s/.tmpl//g`
echo $f2
sed -e s/PVERSION/$VERSION/g \