diff options
author | lioux <lioux@FreeBSD.org> | 2002-03-25 06:08:00 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2002-03-25 06:08:00 +0800 |
commit | dabd63a2911985d6ae7ec9e683e4ee8aab41108b (patch) | |
tree | 510cd8146e2c90620ddcfed13c0620c73471291c /multimedia | |
parent | 440a846b932b051234d7a6149e54dd19ea397c3b (diff) | |
download | freebsd-ports-gnome-dabd63a2911985d6ae7ec9e683e4ee8aab41108b.tar.gz freebsd-ports-gnome-dabd63a2911985d6ae7ec9e683e4ee8aab41108b.tar.zst freebsd-ports-gnome-dabd63a2911985d6ae7ec9e683e4ee8aab41108b.zip |
Circumvent problem with automake* installed in the system
PR: 34365
Submitted by: pat
Prompted by: Alan Eldridge <alane@geeksrus.net>,
darren <igla@batterybackups.net>
Approved by: maintainer (2 month timeout)
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libdvdread/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/multimedia/libdvdread/Makefile b/multimedia/libdvdread/Makefile index 451ffb3b1d85..3677b3251f27 100644 --- a/multimedia/libdvdread/Makefile +++ b/multimedia/libdvdread/Makefile @@ -29,6 +29,12 @@ pre-everything:: @${ECHO_MSG} "====> If you want to enable optimizations, please define WITH_OPTIMIZED_CFLAGS" .endif +post-patch: +.for p in Makefile.in dvdread/Makefile.in src/Makefile.in + @${PERL} -pi -e 's|cd \$$\(top_srcdir\) && \$$\(AUTOMAKE\)|\#|; \ + s|cd \$$\(srcdir\) && \$$\(ACLOCAL\)|\#|' ${WRKSRC}/${p} +.endfor + post-configure: @${LN} -sf ${LOCALBASE}/bin/libtool ${WRKSRC} |