http://llvm.org/bugs/show_bug.cgi?id=2331

           Summary: a patch for win32 build when there is no bison present
           Product: Build scripts
           Version: trunk
          Platform: PC
        OS/Version: Windows 2000
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Makefiles
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
                CC: [email protected]


a patch for win32 build when there is no bison present
there is a mistake in the batch file which copy the needed files to the wrong
place


Index: D:/LLVM/llvm/win32/dobison.cmd

===================================================================

--- D:/LLVM/llvm/win32/dobison.cmd (revision 51136)

+++ D:/LLVM/llvm/win32/dobison.cmd (working copy)

@@ -22,6 +22,7 @@


 :nobison
 echo Bison not found.  Using pre-generated files.
-copy %~pn4.cpp.cvs %5\%3.cpp
+copy %~pn4.cpp.cvs .\%3.cpp
+copy %~pn4.h.cvs .\%3.h
 copy %~pn4.h.cvs %5\%3.h
 exit


-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to