Russell Yanofsky wrote:
> Daniel Rall wrote:
>
>>Russell Yanofsky wrote:
>>
>>>Does "add-deps = mkdir-init" do what you need?
>>...
>>Any ideas as to how the mkdir-init dependency can be added earlier in
>>the dependency sequence?
>
> You could modify gen-make.py to put add-deps dependencies before normal
> dependencies.
...
Combining the following change with an "add-deps = mkdir-init" line for
the [swig_client] library did the job. I'll want to add that entry to
all the [swig_xxx] config sections. However, I'm worried about the
following change destablizing the build, so I'd like to put it in just
after a release occurs (i.e. 0.30). Is now a good time for that, or
should I hold off for a couple days?
--- gen_make.py (revision 7168)
+++ gen_make.py (working copy)
@@ -72,7 +72,7 @@
'%s_OBJECTS = %s\n'
'%s: $(%s_DEPS)\n'
'\tcd %s && %s -o %s $(%s_OBJECTS) %s $(LIBS)\n\n'
- % (targ_varname, string.join(objects + deps), target_ob.add_deps,
+ % (targ_varname, target_ob.add_deps, string.join(objects + deps),
targ_varname, objnames,
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Sep 24 05:10:41 2003