Chameleon

Chameleon Commit Details

Date:2012-01-09 23:50:16 (12 years 2 months ago)
Author:blackosx
Commit:1782
Parents: 1781
Message:Ignore .svn occurences in function makeSubstitutions().
Changes:
M/trunk/package/buildpkg.sh

File differences

trunk/package/buildpkg.sh
166166
167167
168168
169
170
171
169
170
171
172
173
172174
173175
174176
$ownSubst"
for file in "$@";do
cp -pf "$file" "${file}.in"
sed "$allSubst" "${file}.in" > "${file}"
rm -f "${file}.in"
if [[ ! $file == *.svn* ]]; then
cp -pf "$file" "${file}.in"
sed "$allSubst" "${file}.in" > "${file}"
rm -f "${file}.in"
fi
done
}

Archive Download the corresponding diff file

Revision: 1782