Another make install dependency fix.
This commit is contained in:
parent
583bb3fd3e
commit
717e8f45ee
|
@ -1469,7 +1469,7 @@ LINKABLE_DLLS = ntdll.dll
|
|||
libntdll.dll.$(LIBEXT): ntdll/ntdll.dll$(DLLEXT)
|
||||
$(RM) $@ && $(LN_S) ntdll/ntdll.dll$(DLLEXT) $@
|
||||
|
||||
kernel: libntdll.dll.$(LIBEXT)
|
||||
kernel kernel/__install__: libntdll.dll.$(LIBEXT)
|
||||
|
||||
uninstall::
|
||||
$(RM) $(LINKABLE_DLLS:%=$(libdir)/lib%.$(LIBEXT))
|
||||
|
|
|
@ -284,7 +284,7 @@ foreach my $mod (keys %imports)
|
|||
{
|
||||
my $deps = "";
|
||||
foreach my $i (@{$linked_dlls{$mod}}) { $deps .= " lib$i.\$(LIBEXT)"; }
|
||||
if ($deps) { printf NEWMAKE "%s:%s\n", $directories{$mod}, $deps; }
|
||||
if ($deps) { printf NEWMAKE "%s %s/__install__:%s\n", $directories{$mod}, $directories{$mod}, $deps; }
|
||||
}
|
||||
|
||||
print NEWMAKE <<EOF;
|
||||
|
|
Loading…
Reference in New Issue