21 lines
516 B
Bash
21 lines
516 B
Bash
#!/bin/sh
|
|
|
|
# This pile of horror converts the makefiles into expecting the -export
|
|
# version of the libraries.
|
|
|
|
set -e
|
|
cd build-udeb
|
|
|
|
for lib in dns irs isc isccc isccfg lwres; do
|
|
sed -i "s/lib${lib}\./lib${lib}-export./g" lib/${lib}/Makefile
|
|
done
|
|
|
|
sed -i 's/ -lisc -ldns -lisccfg$/ -lisc-export -ldns-export -lisccfg-export/' \
|
|
lib/irs/Makefile
|
|
|
|
patch -p0 < ../debian/export.diff
|
|
|
|
for lib in dns irs isc isccc isccfg lwres; do
|
|
sed -i 's/\(lib'${lib}'\).la/\1-export.la/g' $(find . -name Makefile)
|
|
done
|