Commit 12c9b501 authored by Alexandre Julliard's avatar Alexandre Julliard

We no longer need a special case for the ntdll import library.

parent 959e472e
......@@ -1067,7 +1067,6 @@ IMPORT_SYMLINKS = \
liblz32.$(IMPLIBEXT) \
libmsacm32.$(IMPLIBEXT) \
libmsvfw32.$(IMPLIBEXT) \
libntdll.$(IMPLIBEXT) \
libolecli32.$(IMPLIBEXT) \
libolesvr32.$(IMPLIBEXT) \
libuser32.$(IMPLIBEXT) \
......@@ -1556,9 +1555,6 @@ libmsacm32.$(IMPLIBEXT): msacm/libmsacm32.$(IMPLIBEXT)
libmsvfw32.$(IMPLIBEXT): msvideo/libmsvfw32.$(IMPLIBEXT)
$(RM) $@ && $(LN_S) msvideo/libmsvfw32.$(IMPLIBEXT) $@
libntdll.$(IMPLIBEXT): ntdll/libntdll.$(IMPLIBEXT)
$(RM) $@ && $(LN_S) ntdll/libntdll.$(IMPLIBEXT) $@
libolecli32.$(IMPLIBEXT): olecli/libolecli32.$(IMPLIBEXT)
$(RM) $@ && $(LN_S) olecli/libolecli32.$(IMPLIBEXT) $@
......
......@@ -248,7 +248,7 @@ foreach my $mod (sort keys %staticlib_dirs)
print NEWMAKE "\n# Import libraries\n\n";
print NEWMAKE "STATIC_IMPLIBEXT = \$(IMPLIBEXT:def=def.a)\n\n";
my @lib_symlinks = ("ntdll.dll");
my @lib_symlinks = ();
foreach my $mod (sort keys %importlibs)
{
my $dir = $directories{$mod};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment