aboutsummaryrefslogtreecommitdiff
path: root/mail/mew2/scripts/configure
blob: f82ebf02a074231b0002913db518513125a2cc93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

for i in ${TARGETS}; do
    if [ -f ${WRKDIR}/${i}.in ]; then
	cat ${WRKDIR}/${i}.in | \
	    sed \
		-e "s;%%LOCALBASE%%;${LOCALBASE};g" \
		-e "s;%%EMACS_LIBDIR%%;${EMACS_LIBDIR};g" \
		-e "s;%%EMACS_SETUPEL%%;${EMACS_SETUPEL};g" \
	    > ${WRKDIR}/${i}
    fi
done