Greg,

Well diffing your correct.txt and incorrect.txt from the previous email you get these differences:

$ diff incorrect.txt correct.txt
59,62c59,63
< ./lec/img/shell01/pipes.png
< ./lec/img/shell01/redirection.png
< ./lec/img/shell01/shell_no_export.png
< ./lec/img/shell01/shell_with_export.png
---
> ./lec/img/shell01/directory_tree.png
> ./lec/img/shell01/operating_system.png
> ./lec/img/shell01/parent_directory.png
> ./lec/img/shell01/running_program.png
> ./lec/img/shell01/shell_screenshot.png
81,94c82,90
< ./lec/img/py02/binary_search.png
< ./lec/img/py02/dict_as_table.png
< ./lec/img/py02/hashing.png
< ./lec/img/py02/invert_dict.png
< ./lec/img/py02/list_vs_set.png
< ./lec/img/py02/logarithmic.png
< ./lec/img/py02/misplaced_values.png
< ./lec/img/py03/binary_search.png
< ./lec/img/py03/dict_as_table.png
< ./lec/img/py03/hashing.png
< ./lec/img/py03/invert_dict.png
< ./lec/img/py03/list_vs_set.png
< ./lec/img/py03/logarithmic.png
< ./lec/img/py03/misplaced_values.png
---
> ./lec/img/py02/aliasing.png
> ./lec/img/py02/indices.png
> ./lec/img/py02/line_segment.png
> ./lec/img/py02/negative_indices.png
> ./lec/img/py02/slice_copy.png
> ./lec/img/py03/call_stack.png
> ./lec/img/py03/function_objects.png
> ./lec/img/py03/parameter_passing.png
> ./lec/img/py03/passing_slices.png
116c112,115
< ./lec/img/oop01/factory_type_family.png
---
> ./lec/img/oop01/classes_and_objects.png
> ./lec/img/oop01/crc.png
> ./lec/img/oop01/inheritance.png
> ./lec/img/oop01/simple_point.png

Now looking at the critical definitions you have:

LECTURES = \
        intro \
        shell01 \
        shell02 \
        version \
        build \
        py01 \
        py02 \
        py03 \
        style \
        qa \
        py04 \
        debugging \
        oop01 \
        oop02 \
        unit \
        re \
        binary \
        xml \
        db \
        spreadsheets \
        integrate \
        client \
        server \
        security \
        dev01 \
        dev02 \
        summary \
        ack \
        bib \
        glossary \
        extlinks \
        figurelist \
        tablelist \
        syllabus

SITES = # nothing

GFX_SUFFIX := gif jpg png
GFX_SRC := \
        $(foreach fmt,$(GFX_SUFFIX),\
          $(wildcard ./img/*.${fmt}) \
          $(foreach lecdir,${LECTURES}, \
            $(wildcard ./lec/img/${lecdir}/*.${fmt}) \
          ) \
          $(foreach sitedir,${SITES}, \
            $(wildcard ./sites/${sitedir}/img/*.${fmt}) \
          ) \
        )

There's nothing there that looks to me like it's platform specific so I would expect this to work correctly on both operating systems without a problem (BTW it would have been *really* nice if you'd narrowed this question down to those relevant lines before posting your question :-).

I know this is going to sound dumb, but do you actually have the same files in those directories on all the machines. (Counting symlinks as well).

John.


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to