summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-12-12 13:39:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-12-12 13:39:43 +0000
commit53a895846c4e76c6f5677e33bba0d16c5f4c5d68 (patch)
tree66edd92ef82792de037d63995eeaf447cf1c7b2a /cpukit/sapi
parent2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-53a895846c4e76c6f5677e33bba0d16c5f4c5d68.tar.bz2
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
Diffstat (limited to 'cpukit/sapi')
-rw-r--r--cpukit/sapi/ChangeLog4
-rw-r--r--cpukit/sapi/Makefile.am6
2 files changed, 6 insertions, 4 deletions
diff --git a/cpukit/sapi/ChangeLog b/cpukit/sapi/ChangeLog
index 1594e391c6..13c306bf69 100644
--- a/cpukit/sapi/ChangeLog
+++ b/cpukit/sapi/ChangeLog
@@ -1,3 +1,7 @@
+2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
+
2003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Add $(dirstamp) to compilation rules.
diff --git a/cpukit/sapi/Makefile.am b/cpukit/sapi/Makefile.am
index 3afe30fa7a..9c48e7391e 100644
--- a/cpukit/sapi/Makefile.am
+++ b/cpukit/sapi/Makefile.am
@@ -52,18 +52,16 @@ EXTRA_DIST += $(C_FILES)
PREINSTALL_FILES =
$(PROJECT_INCLUDE)/$(dirstamp):
- @$(mkinstalldirs) $(PROJECT_INCLUDE)
+ @$(mkdir_p) $(PROJECT_INCLUDE)
@: > $(PROJECT_INCLUDE)/$(dirstamp)
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp)
$(PROJECT_INCLUDE)/confdefs.h: include/confdefs.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/confdefs.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/confdefs.h
$(PROJECT_INCLUDE)/rtems/$(dirstamp):
- @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems
+ @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
@: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
$(PROJECT_INCLUDE)/rtems/config.h: include/rtems/config.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/config.h