summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-02-10 13:32:17 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-02-10 13:32:17 +0000
commita4454ed9c55d416f45a3faedd603e8f65bf194c5 (patch)
tree9393a05c24aacf424a361847c96aa0dc9eda60cc
parent2004-02-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-a4454ed9c55d416f45a3faedd603e8f65bf194c5.tar.bz2
2004-02-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use rtems_source_spec_DEPS instead of rtems_source_spec_DEPENDENCIES (Conflicts with automake internals).
-rw-r--r--scripts/ChangeLog5
-rw-r--r--scripts/Makefile.am6
2 files changed, 8 insertions, 3 deletions
diff --git a/scripts/ChangeLog b/scripts/ChangeLog
index e0dec5e5f3..d7d6674328 100644
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,5 +1,10 @@
2004-02-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * Makefile.am: Use rtems_source_spec_DEPS instead of
+ rtems_source_spec_DEPENDENCIES (Conflicts with automake internals).
+
+2004-02-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* configure.ac: Remove rtemsdoc/mkspec.
2004-02-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 2cf7fee2f5..c489979d7d 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -18,11 +18,11 @@ CONFIG_STATUS_DEPENDENCIES = setup.cache
setup.cache: setup.def
cp setup.def $@
-rtems_source_spec_DEPENDENCIES = common/common.add rtems/rtems-source.add \
+rtems_source_spec_DEPS = common/common.add rtems/rtems-source.add \
common/clean.add
noinst_DATA += rtems/rtems-source.spec
-rtems/rtems-source.spec: $(rtems_source_spec_DEPENDENCIES)
- cat $(rtems_source_spec_DEPENDENCIES) | sed \
+rtems/rtems-source.spec: $(rtems_source_spec_DEPS)
+ cat $(rtems_source_spec_DEPS) | sed \
-e 's,[@]rtems_version[@],$(RTEMS_VERSION),g' \
-e 's,[@]RTEMS_RPM_RELEASE[@],$(RTEMS_RPM_RELEASE),g' > $@