You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by ch...@apache.org on 2015/05/08 17:23:57 UTC

svn commit: r1678378 - /uima/sandbox/uima-ducc/trunk/src/main/admin/ducc_post_install

Author: challngr
Date: Fri May  8 15:23:56 2015
New Revision: 1678378

URL: http://svn.apache.org/r1678378
Log:
UIMA-4358 Use absolute path to call build_duccling.

Modified:
    uima/sandbox/uima-ducc/trunk/src/main/admin/ducc_post_install

Modified: uima/sandbox/uima-ducc/trunk/src/main/admin/ducc_post_install
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/src/main/admin/ducc_post_install?rev=1678378&r1=1678377&r2=1678378&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/src/main/admin/ducc_post_install (original)
+++ uima/sandbox/uima-ducc/trunk/src/main/admin/ducc_post_install Fri May  8 15:23:56 2015
@@ -391,7 +391,7 @@ class PostInstall():
         self.merge_properties()
 
         # Make duccling
-        rc = os.system('build_duccling')
+        rc = os.system(self.DUCC_HOME + '/admin/build_duccling')
         if ( rc != 0 ):
             print 'Could not build ducc_ling.  Run the command'
             print '   build_duccling'