about summary refs log tree commit diff
path: root/nptl/tst-unload.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-02-25 18:43:42 +0000
committerUlrich Drepper <drepper@redhat.com>2004-02-25 18:43:42 +0000
commit25b8e63c0a109ccd8fc9ebfd4bed8faffa0e47f2 (patch)
treea6383146833ad7281563359586e3a1b22bdbe949 /nptl/tst-unload.c
parent701d185cba1f141555ec0b695570e8feceabe532 (diff)
downloadglibc-25b8e63c0a109ccd8fc9ebfd4bed8faffa0e47f2.tar.gz
glibc-25b8e63c0a109ccd8fc9ebfd4bed8faffa0e47f2.tar.xz
glibc-25b8e63c0a109ccd8fc9ebfd4bed8faffa0e47f2.zip
Update.
	* Makefile (tests-nolibpthread): Add tst-unload.  Don't link with
	libpthread for the files in this list.
	(CFLAGS-tst-unload): Removed.
	* tst-unload.c (do_test): Don't use complete path for
	LIBPHREAD_SO.
Diffstat (limited to 'nptl/tst-unload.c')
-rw-r--r--nptl/tst-unload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/tst-unload.c b/nptl/tst-unload.c
index ca779fe1b5..ad86518caa 100644
--- a/nptl/tst-unload.c
+++ b/nptl/tst-unload.c
@@ -1,5 +1,5 @@
 /* Tests for non-unloading of libpthread.
-   Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2000.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,7 +25,7 @@
 static int
 do_test (void)
 {
-  void *p = dlopen (PREFIX LIBPTHREAD_SO, RTLD_LAZY);
+  void *p = dlopen (LIBPTHREAD_SO, RTLD_LAZY);
 
   if (p == NULL)
     {