diff options
author | jperkin <jperkin> | 2013-07-14 21:08:17 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2013-07-14 21:08:17 +0000 |
commit | 7405896111e39a4ea12fb276e2d7db5c1254b767 (patch) | |
tree | c50c134ad70664fee4c6efc329f8e07fd753de2a /lang/ruby | |
parent | 33c148adb90cf4cf3343c8c54a9894414c20f920 (diff) | |
download | pkgsrc-7405896111e39a4ea12fb276e2d7db5c1254b767.tar.gz |
Fix shell syntax error which has been breaking all gem builds on SunOS for
the past week as per the reports on pkgsrc-bulk. Not sure why it wasn't
showing up on other platforms, but I am assuming this is the correct fix.
Diffstat (limited to 'lang/ruby')
-rw-r--r-- | lang/ruby/gem.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/ruby/gem.mk b/lang/ruby/gem.mk index 3caaf81a073..ed5a126a117 100644 --- a/lang/ruby/gem.mk +++ b/lang/ruby/gem.mk @@ -1,4 +1,4 @@ -# $NetBSD: gem.mk,v 1.21 2013/07/07 15:16:38 taca Exp $ +# $NetBSD: gem.mk,v 1.22 2013/07/14 21:08:17 jperkin Exp $ # # This Makefile fragment is intended to be included by packages that build # and install Ruby gems. @@ -363,7 +363,7 @@ _gem-build-cleanbuild: *) continue ;; \ esac; \ if [ -e ${WRKSRC:Q}"/$$file" ]; then \ - && continue; \ + continue; \ elif [ -d "$$file" ]; then \ rfile=`echo $$file | ${SED} -e 's|^\./||'`; \ ${ECHO} "rmdir "${GEM_NAME}"/$$rfile"; \ |