Commit 7899e383 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Contrib: Attempt to repair .la pathes. Repeating things, because I don't know...

Contrib: Attempt to repair .la pathes. Repeating things, because I don't know how to do it better... Anyway, just an attempt

parent 21e57260
...@@ -58,3 +58,11 @@ for file in $files; do ...@@ -58,3 +58,11 @@ for file in $files; do
mv -f $file.tmp $file mv -f $file.tmp $file
fi fi
done done
files=` ls -1 *.la`
for file in $files; do
echo $file
sed -e "s,$prefix,$new_prefix,g" < $file > $file.tmp
mv -f $file.tmp $file
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment