summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-06-14 13:34:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-06-14 13:34:53 +0000
commit8e2b4deb2ab029a2a80fe8627449a74131b5b48b (patch)
treefd59af8e4abbebb81f0caab662c11b1c7cad3aef /cpukit
parent2001-05-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8e2b4deb2ab029a2a80fe8627449a74131b5b48b.tar.bz2
2001-06-14 Joel Sherrill <joel@OARcorp.com>
* shell/telnetd.c, shell/telnetd.h: Moved to libnetworking/rtems_servers so the network stack to address network depenendency. * shell/Makefile.am: Modified to reflect above.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/libmisc/ChangeLog7
-rw-r--r--cpukit/libmisc/shell/Makefile.am6
2 files changed, 10 insertions, 3 deletions
diff --git a/cpukit/libmisc/ChangeLog b/cpukit/libmisc/ChangeLog
index 68eba4c2f5..245870fb98 100644
--- a/cpukit/libmisc/ChangeLog
+++ b/cpukit/libmisc/ChangeLog
@@ -1,3 +1,10 @@
+2001-06-14 Joel Sherrill <joel@OARcorp.com>
+
+ * shell/telnetd.c, shell/telnetd.h: Moved to
+ libnetworking/rtems_servers so the network stack to address network
+ depenendency.
+ * shell/Makefile.am: Modified to reflect above.
+
2001-05-25 Joel Sherrill <joel@OARcorp.com>
* shell/cmds.c: Removed code from inappropriate source.
diff --git a/cpukit/libmisc/shell/Makefile.am b/cpukit/libmisc/shell/Makefile.am
index 94e5350c82..fc75a4f81c 100644
--- a/cpukit/libmisc/shell/Makefile.am
+++ b/cpukit/libmisc/shell/Makefile.am
@@ -9,10 +9,10 @@ include_rtemsdir = $(includedir)/rtems
LIBNAME = libshell-tmp
LIB = $(ARCH)/$(LIBNAME).a
-C_FILES = cmds.c shell.c pty.c telnetd.c
+C_FILES = cmds.c shell.c pty.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
-include_rtems_HEADERS = shell.h telnetd.h
+include_rtems_HEADERS = shell.h
OBJS = $(C_O_FILES)
@@ -39,6 +39,6 @@ all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
.PRECIOUS: $(LIB)
-EXTRA_DIST = README shell.c cmds.c pty.c telnetd.c shell.h telnetd.h
+EXTRA_DIST = README shell.c cmds.c pty.c shell.h
include $(top_srcdir)/../../../automake/local.am