diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-03-30 12:12:53 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-03-30 12:12:53 +0000 |
commit | 380317bde9db6861d1d800cc1e9f44f21857bcee (patch) | |
tree | 7779cd09554e172da6706253f05a3e6e179c1986 /graphics/ruby-tgif | |
parent | cd dir && command -> cd dir; command (diff) |
cd dir && command -> cd dir; command
Notes
Notes:
svn path=/head/; revision=56946
Diffstat (limited to 'graphics/ruby-tgif')
-rw-r--r-- | graphics/ruby-tgif/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/ruby-tgif/Makefile b/graphics/ruby-tgif/Makefile index 526840f5242d..47fbc7e44cf1 100644 --- a/graphics/ruby-tgif/Makefile +++ b/graphics/ruby-tgif/Makefile @@ -27,14 +27,14 @@ TGIF_PORT= graphics/tgif-nls WRKSRC= ${WRKDIR}/ruby-${PORTNAME}-${PORTVERSION} CONFIGURE_ARGS= --with-x-dir="${X11BASE}" \ - --with-ldflags=" `cd ${WRKSRC}/tgif && ${MAKE} -V LDOPTIONS -V LOCAL_LIBRARIES -V LDLIBS -V EXTRA_LOAD_FLAGS | paste -s -`" + --with-ldflags=" `cd ${WRKSRC}/tgif; ${MAKE} -V LDOPTIONS -V LOCAL_LIBRARIES -V LDLIBS -V EXTRA_LOAD_FLAGS | paste -s -`" INSTALL_TARGET= site-install DOCS_EN= README DOCS_JA= ChangeLog.ja README.ja post-extract: - ${LN} -sf `cd ${PORTSDIR}/${TGIF_PORT} && ${MAKE} -V WRKSRC` ${WRKSRC}/tgif + ${LN} -sf `cd ${PORTSDIR}/${TGIF_PORT}; ${MAKE} -V WRKSRC` ${WRKSRC}/tgif post-patch: ${RUBY} -i -pe 'gsub %r|\.\./|, "tgif/"' ${WRKSRC}/extconf.rb ${WRKSRC}/*.c |