diff options
-rw-r--r-- | exec/ChangeLog | 7 | ||||
-rw-r--r-- | exec/Makefile | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/exec/ChangeLog b/exec/ChangeLog index 06538f37..c5c2b01f 100644 --- a/exec/ChangeLog +++ b/exec/ChangeLog @@ -1,3 +1,10 @@ +2000-07-26 Mark Kettenis <kettenis@gnu.org> + + * Makefile (HURDLIBS): Reorder libs such that the threads lib + comes before the ports lib. This makes sure the functions in + libthreads properly override the stubs in libports with the new + dynamic linker semantics in glibc 2.2. + 2000-07-20 Thomas Bushnell, BSG <tb@mit.edu> * hashexec.c (check_hashbang): Count characters in interp diff --git a/exec/Makefile b/exec/Makefile index 8dd6a058..3daf1620 100644 --- a/exec/Makefile +++ b/exec/Makefile @@ -29,7 +29,7 @@ target = exec #targets = exec exec.static DIST_FILES = core.c gcore.c elfcore.c #OTHERLIBS = -lbfd -liberty -HURDLIBS=trivfs fshelp iohelp ports ihash threads shouldbeinlibc +HURDLIBS = trivfs fshelp iohelp threads ports ihash shouldbeinlibc exec-MIGSFLAGS = -imacros $(srcdir)/execmutations.h |