pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/ruby Fix shell syntax error which has been breaki...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/614847a88f03
branches:  trunk
changeset: 621689:614847a88f03
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Sun Jul 14 21:08:17 2013 +0000

description:
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:

 lang/ruby/gem.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r d10018eef8f2 -r 614847a88f03 lang/ruby/gem.mk
--- a/lang/ruby/gem.mk  Sun Jul 14 20:31:45 2013 +0000
+++ b/lang/ruby/gem.mk  Sun Jul 14 21:08:17 2013 +0000
@@ -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 @@
                *)      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";          \



Home | Main Index | Thread Index | Old Index