blob: 5b5037312f6448d2f014d8e1224de54784d4a9d8 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# $NetBSD: post-patch,v 1.1 1999/03/01 20:33:01 hwr Exp $
cd ${WRKSRC}
mv Makefile Makefile.orig
sed -e "s|@PREFIX@|${LOCALBASE}|" < Makefile.orig > Makefile
mv pdf.h pdf.h.orig
sed -e "s|@PREFIX@|${LOCALBASE}|" < pdf.h.orig > pdf.h
|