diff options
author | seb <seb@pkgsrc.org> | 2003-09-02 13:27:45 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2003-09-02 13:27:45 +0000 |
commit | e239c60f1eb9d316ed83c4e454c134eb1240f425 (patch) | |
tree | 5342bccd3a5970dd068dea09545143a22a1cd9f4 | |
parent | 9581eb7e443369c5ec28e36b494797e1db3c4738 (diff) | |
download | pkgsrc-e239c60f1eb9d316ed83c4e454c134eb1240f425.tar.gz |
Fix REPLACE_PERL: pathnames listed should be relative to ${WRKSRC}.
-rw-r--r-- | graphics/fly/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/fly/Makefile b/graphics/fly/Makefile index 183c8d95b62..82cf0ee51ea 100644 --- a/graphics/fly/Makefile +++ b/graphics/fly/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2003/07/21 16:51:39 martti Exp $ +# $NetBSD: Makefile,v 1.23 2003/09/02 13:27:45 seb Exp $ DISTNAME= fly-1.6.5 PKGREVISION= 4 @@ -15,10 +15,10 @@ USE_BUILDLINK2= YES USE_PERL5= YES USE_X11= YES -REPLACE_PERL= ${WRKSRC}/examples/cgi-perl-example.pl \ - ${WRKSRC}/examples/fly-tester.pl \ - ${WRKSRC}/examples/size.pl \ - ${WRKSRC}/examples/perl.example +REPLACE_PERL= examples/cgi-perl-example.pl \ + examples/fly-tester.pl \ + examples/size.pl \ + examples/perl.example pre-configure: ${SED} -e 's|@PREFIX@|${PREFIX}|g' \ |