summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2006-03-27 19:57:54 +0000
committerThomas Schwinge <tschwinge@gnu.org>2006-03-27 19:57:54 +0000
commite3f5b14acf07c8162d1777ca630aeece561ef485 (patch)
tree5d1bfe7e5c4b6c68a4a7f78a971c20e432dc34f7
parent5bff6e8f998477a4528510e92fbcf33783c70506 (diff)
2006-03-27 Thomas Schwinge <tschwinge@gnu.org>
* Makefile (SRCS): Don't define two times and only list `pt-attr.c' once. Reported by Jeff Bailey <jbailey@gnu.org>.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile7
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c64c8b1..3f76234 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-27 Thomas Schwinge <tschwinge@gnu.org>
+
+ * Makefile (SRCS): Don't define two times and only list `pt-attr.c'
+ once. Reported by Jeff Bailey <jbailey@gnu.org>.
+
2005-08-28 Neal H. Walfield <neal@gnu.org>
* include/semaphore.h: Use __restrict, not restrict.
diff --git a/Makefile b/Makefile
index 8ca5eb7..3c5631a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
#
-# Copyright (C) 1994,95,96,97,2000,02, 2004, 2005 Free Software Foundation, Inc.
+# Copyright (C) 1994,95,96,97,2000,02, 2004, 2005, 2006
+# Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
@@ -21,8 +22,6 @@ makemode := library
MICROKERNEL := mach
SYSDEPS := lockfile.c
-SRCS :=
-
LCLHDRS :=
SRCS := pt-attr.c pt-attr-destroy.c pt-attr-getdetachstate.c \
@@ -32,7 +31,7 @@ SRCS := pt-attr.c pt-attr-destroy.c pt-attr-getdetachstate.c \
pt-attr-init.c pt-attr-setdetachstate.c pt-attr-setguardsize.c \
pt-attr-setinheritsched.c pt-attr-setschedparam.c \
pt-attr-setschedpolicy.c pt-attr-setscope.c pt-attr-setstack.c \
- pt-attr-setstackaddr.c pt-attr-setstacksize.c pt-attr.c \
+ pt-attr-setstackaddr.c pt-attr-setstacksize.c \
\
pt-barrier-destroy.c pt-barrier-init.c pt-barrier-wait.c \
pt-barrier.c pt-barrierattr-destroy.c pt-barrierattr-init.c \