summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/score/ChangeLog5
-rw-r--r--c/src/exec/score/include/Makefile.am2
-rw-r--r--cpukit/score/ChangeLog5
-rw-r--r--cpukit/score/include/Makefile.am2
4 files changed, 12 insertions, 2 deletions
diff --git a/c/src/exec/score/ChangeLog b/c/src/exec/score/ChangeLog
index 64fd0a00d4..1c5606a9fd 100644
--- a/c/src/exec/score/ChangeLog
+++ b/c/src/exec/score/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * include/Makefile.am: Work-around to autoconf-2.53 adding PACKAGE_*
+ to autoheaders - sed out *PACKAGE* from cpuopts-tmp.h.
+
2001-05-14 Till Straumann <strauman@slac.stanford.edu>
* src/threaddispatch.c, src/threadhandler.c: Per PR211 fix
diff --git a/c/src/exec/score/include/Makefile.am b/c/src/exec/score/include/Makefile.am
index f04377b86b..1d5175340c 100644
--- a/c/src/exec/score/include/Makefile.am
+++ b/c/src/exec/score/include/Makefile.am
@@ -55,7 +55,7 @@ rtems/score/cpuopts.h: rtems/score/cpuopts-tmp.h
@echo "#ifndef __CPU_OPTIONS_h" >>$@
@echo "#define __CPU_OPTIONS_h" >>$@
@echo >>$@
- @cat rtems/score/cpuopts-tmp.h >>$@
+ @cat rtems/score/cpuopts-tmp.h | sed -e '/.*PACKAGE.*/d' >>$@
@echo >>$@
@echo "#endif" >>$@
diff --git a/cpukit/score/ChangeLog b/cpukit/score/ChangeLog
index 64fd0a00d4..1c5606a9fd 100644
--- a/cpukit/score/ChangeLog
+++ b/cpukit/score/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * include/Makefile.am: Work-around to autoconf-2.53 adding PACKAGE_*
+ to autoheaders - sed out *PACKAGE* from cpuopts-tmp.h.
+
2001-05-14 Till Straumann <strauman@slac.stanford.edu>
* src/threaddispatch.c, src/threadhandler.c: Per PR211 fix
diff --git a/cpukit/score/include/Makefile.am b/cpukit/score/include/Makefile.am
index f04377b86b..1d5175340c 100644
--- a/cpukit/score/include/Makefile.am
+++ b/cpukit/score/include/Makefile.am
@@ -55,7 +55,7 @@ rtems/score/cpuopts.h: rtems/score/cpuopts-tmp.h
@echo "#ifndef __CPU_OPTIONS_h" >>$@
@echo "#define __CPU_OPTIONS_h" >>$@
@echo >>$@
- @cat rtems/score/cpuopts-tmp.h >>$@
+ @cat rtems/score/cpuopts-tmp.h | sed -e '/.*PACKAGE.*/d' >>$@
@echo >>$@
@echo "#endif" >>$@