Diff of /trunk/wharfie/lib/makefile.py [r25] .. [r26]  Maximize  Restore

Switch to unified view

a/trunk/wharfie/lib/makefile.py b/trunk/wharfie/lib/makefile.py
...
...
131
                # copy over snar file from previous level and add changes to the new one
131
                # copy over snar file from previous level and add changes to the new one
132
                f.write("[ ! -f ../$<.snar ] || cp ../$<.snar ../$@.snar;");
132
                f.write("[ ! -f ../$<.snar ] || cp ../$<.snar ../$@.snar;");
133
            if incremental:
133
            if incremental:
134
                f.write("tar -g ../$@.snar -cf '../$@' .;");
134
                f.write("tar -g ../$@.snar -cf '../$@' .;");
135
            else:
135
            else:
136
                f.write("tar -cf '../$@' .;");
136
                if not 'temporary' in target or not target['temporary']:
137
                    f.write("tar -cf '../$@' .;");
137
            f.write("\"\n");
138
            f.write("\"\n");
138
            # ... end command
139
            # ... end command
139
            
140
            
140
141
141
            if 'temporary' in target and target['temporary']:
142
            if 'temporary' in target and target['temporary']: