diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-03-24 22:08:00 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-03-24 22:08:00 +0000 |
commit | f8a3a9f0fd17324b506710dda403e5a68937ec37 (patch) | |
tree | 78b2cf55cf2ed54fb6bd83bb954840063d9f178b /multimedia/libdvdread | |
parent | 9c6a586f5e45cd74ed70731c4ca66101154750a6 (diff) | |
download | ports-f8a3a9f0fd17324b506710dda403e5a68937ec37.tar.gz ports-f8a3a9f0fd17324b506710dda403e5a68937ec37.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)
Notes
Notes:
svn path=/head/; revision=56558
Diffstat (limited to 'multimedia/libdvdread')
-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} |