Using OS: Win XP
SP2 Dev Env: MS VC 6 & CYGWIN
I'm fairly new to
building Wireshark & SVN usage.
The changes merged
into .\epan\dissectors\Makefile.nmake Rev 18391 broke my build. I believe
there are several other makefile.nmake files affected. I have been
able to continue building by replacing line:
@$(PYTHON)
../../tools/make-dissector-reg.py . dissectors
$(DISSECTOR_SRC)
with
@$(PYTHON)
"../../tools/make-dissector-reg.py" . dissectors
$(DISSECTOR_SRC)
OR
@$(PYTHON)
../../tools/make-dissector-reg.py . plugin
$(DISSECTOR_SRC)
with
@$(PYTHON)
"../../tools/make-dissector-reg.py" . plugin
$(DISSECTOR_SRC)
Has anyone else seen
this problem?
Thanks,
-Tim