diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-05-25 00:30:24 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-05-25 00:30:24 +0000 |
commit | 30eea66494bfffd5b3eaf451f7f0edb51737b3b1 (patch) | |
tree | b0f8fc67040947859b1788560ba98304dbb3ea65 | |
parent | c67968755f6a89fa6f4514c8225f5e23e6fae123 (diff) |
Notes
-rw-r--r-- | lang/ruby-devel/Makefile | 2 | ||||
-rw-r--r-- | lang/ruby/Makefile | 2 | ||||
-rw-r--r-- | lang/ruby16/Makefile | 2 | ||||
-rw-r--r-- | lang/ruby18/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lang/ruby-devel/Makefile b/lang/ruby-devel/Makefile index 68710294f98d..29c4f080acaf 100644 --- a/lang/ruby-devel/Makefile +++ b/lang/ruby-devel/Makefile @@ -118,7 +118,7 @@ pre-install: done post-install: -.if ${STRIP} == -s +.if defined(STRIP) && ${STRIP} == -s strip ${RUBY} .endif ${INSTALL_SCRIPT} ${WRKSRC}/ext/dl/h2rb ${PREFIX}/bin/ diff --git a/lang/ruby/Makefile b/lang/ruby/Makefile index d7fbb038430a..d2da2e936ad9 100644 --- a/lang/ruby/Makefile +++ b/lang/ruby/Makefile @@ -103,7 +103,7 @@ pre-install: done post-install: -.if ${STRIP} == -s +.if defined(STRIP) && ${STRIP} == -s strip ${RUBY} .endif .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} diff --git a/lang/ruby16/Makefile b/lang/ruby16/Makefile index d7fbb038430a..d2da2e936ad9 100644 --- a/lang/ruby16/Makefile +++ b/lang/ruby16/Makefile @@ -103,7 +103,7 @@ pre-install: done post-install: -.if ${STRIP} == -s +.if defined(STRIP) && ${STRIP} == -s strip ${RUBY} .endif .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} diff --git a/lang/ruby18/Makefile b/lang/ruby18/Makefile index 68710294f98d..29c4f080acaf 100644 --- a/lang/ruby18/Makefile +++ b/lang/ruby18/Makefile @@ -118,7 +118,7 @@ pre-install: done post-install: -.if ${STRIP} == -s +.if defined(STRIP) && ${STRIP} == -s strip ${RUBY} .endif ${INSTALL_SCRIPT} ${WRKSRC}/ext/dl/h2rb ${PREFIX}/bin/ |