You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by da...@apache.org on 2012/08/21 22:05:16 UTC

svn commit: r1375741 - in /jena/trunk/jena-sdb/bin: make_classpath sdb_path

Author: damian
Date: Tue Aug 21 20:05:16 2012
New Revision: 1375741

URL: http://svn.apache.org/viewvc?rev=1375741&view=rev
Log:
Fix two reported issues with sdb scripts

Modified:
    jena/trunk/jena-sdb/bin/make_classpath
    jena/trunk/jena-sdb/bin/sdb_path

Modified: jena/trunk/jena-sdb/bin/make_classpath
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/bin/make_classpath?rev=1375741&r1=1375740&r2=1375741&view=diff
==============================================================================
--- jena/trunk/jena-sdb/bin/make_classpath (original)
+++ jena/trunk/jena-sdb/bin/make_classpath Tue Aug 21 20:05:16 2012
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information

Modified: jena/trunk/jena-sdb/bin/sdb_path
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/bin/sdb_path?rev=1375741&r1=1375740&r2=1375741&view=diff
==============================================================================
--- jena/trunk/jena-sdb/bin/sdb_path (original)
+++ jena/trunk/jena-sdb/bin/sdb_path Tue Aug 21 20:05:16 2012
@@ -10,7 +10,7 @@ then
 
 export CP="$SDB_CP"
 
-if [ ! -e "$SDBROOT/lib/jena-sdb*" ]
+if [ ! -e "$SDBROOT/lib/jena-sdb"* ]
 then
     CP="$($SDBROOT/bin/make_classpath_mvn "$SDBROOT")"
 else