diff options
author | ade <ade@FreeBSD.org> | 2005-11-19 14:02:20 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2005-11-19 14:02:20 +0800 |
commit | 2845f609f56f10402b8466c394943a1e64466ae1 (patch) | |
tree | 2dc27564fc10e17093aaf559dd878e18072d471b /devel/libbegemot | |
parent | 3f8f68f964ff4252a330957869a627a5b3e3dd30 (diff) | |
download | freebsd-ports-gnome-2845f609f56f10402b8466c394943a1e64466ae1.tar.gz freebsd-ports-gnome-2845f609f56f10402b8466c394943a1e64466ae1.tar.zst freebsd-ports-gnome-2845f609f56f10402b8466c394943a1e64466ae1.zip |
Switch to <target>:: convention for both patch-autotools and run-autotools,
to allow for easier overriding of these targets by port Makefiles, if
they need to.
Diffstat (limited to 'devel/libbegemot')
-rw-r--r-- | devel/libbegemot/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/devel/libbegemot/Makefile b/devel/libbegemot/Makefile index 395870c5fa10..8a54865f021b 100644 --- a/devel/libbegemot/Makefile +++ b/devel/libbegemot/Makefile @@ -24,10 +24,9 @@ MAN1= cstrc.1 frame.1 getfields.1 intro.1 panic.1 prstat.1 readline.1 \ rpoll.1 strnchr.1 strnlen.1 strsave.1 strtrimsp.1 verb.1 xalloc.1 MLINKS= xalloc.1 xrealloc.1 -run-autotools: - @(cd ${CONFIGURE_WRKSRC} && ${PREFIX}/bin/aclocal19 \ - -I ${PREFIX}/share/libtool15/libltdl/ ) - @(cd ${CONFIGURE_WRKSRC} && ${PREFIX}/bin/autoconf259 ) +run-autotools:: + @(cd ${CONFIGURE_WRKSRC} && ${ACLOCAL} -I ${LIBTOOL_SHAREDIR}/libltdl/) + @(cd ${CONFIGURE_WRKSRC} && ${AUTOCONF}) post-install: .for i in ${MAN1} |