diff options
author | knu <knu@FreeBSD.org> | 2002-03-30 20:12:53 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-03-30 20:12:53 +0800 |
commit | e121e421c4ba57e9a948de7b47d7fc463d943ae7 (patch) | |
tree | c18a563082a3fa10df3cfc772e8affe4f13acb95 /graphics | |
parent | ea3299de3c900df6d9d7bce12f1592ed6441176a (diff) | |
download | freebsd-ports-gnome-e121e421c4ba57e9a948de7b47d7fc463d943ae7.tar.gz freebsd-ports-gnome-e121e421c4ba57e9a948de7b47d7fc463d943ae7.tar.zst freebsd-ports-gnome-e121e421c4ba57e9a948de7b47d7fc463d943ae7.zip |
cd dir && command -> cd dir; command
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ruby-ming/Makefile | 2 | ||||
-rw-r--r-- | graphics/ruby-tgif/Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/graphics/ruby-ming/Makefile b/graphics/ruby-ming/Makefile index cf6abc4075ae..e2331c059437 100644 --- a/graphics/ruby-ming/Makefile +++ b/graphics/ruby-ming/Makefile @@ -34,7 +34,7 @@ EXAMPLES= ../examples/rb/*.rb do-extract: ${MKDIR} ${WRKDIR} - ${LN} -s `cd ${PORTSDIR}/graphics/ming && ${MAKE} -V WRKDIR`/* ${WRKDIR}/ + ${LN} -s `cd ${PORTSDIR}/graphics/ming; ${MAKE} -V WRKDIR`/* ${WRKDIR}/ post-extract: ${LN} -sf ../ming.i ${WRKSRC}/ 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 |