[Python-Dev] Is some magic required to check out new files from svn?
Fredrik Lundh
fredrik at pythonware.com
Sun Nov 13 10:11:23 CET 2005
skip at pobox.com wrote:
> I read the developer's FAQ and the output of "svn up --help". Executing
> "svn up" or "svn info" tells me I'm already at rev 41430, which is the
> latest rev, right? Creating a fresh build subdirectory followed by
> configure and make gives me this error:
>
> ../Objects/frameobject.c:6:18: code.h: No such file or directory
>
> Sure enough, I have no code.h in my Include directory.
what does
svn status Include/code.h
say? if it says
! Include/code.h
what happens if you do
svn revert Include/code.h
?
doing a full
svn status
and looking for ! entries will tell you if more files are missing.
</F>
More information about the Python-Dev
mailing list