You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/10/22 19:55:39 UTC

DO NOT REPLY [Bug 4343] New: - patch for ordering dependency of cmdline.Compile options -o and -p

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4343>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4343

patch for ordering dependency of cmdline.Compile options -o and -p

           Summary: patch for ordering dependency of cmdline.Compile options
                    -o and -p
           Product: XalanJ2
           Version: CurrentCVS
          Platform: Other
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: org.apache.xalan.xsltc
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: johnh@schemasoft.com


--- XSLTC.java	2001/10/19 11:58:40	1.28
+++ XSLTC.java	2001/10/22 17:46:15
@@ -505,6 +505,10 @@
      */
     public void setPackageName(String packageName) {
 	_packageName = packageName;
+	if (_className == null)
+	    _className = "UNDEFINED";
+	else
+	    _className = _packageName + '.' + _className;
     }
 
     /**