[1300] in Kerberos-V5-bugs
krb5b4pl3: appl/telnet: errors in Makefile.in, configure.in
daemon@ATHENA.MIT.EDU (Jonathan I. Kamens)
Sun Mar 26 21:58:02 1995
From: "Jonathan I. Kamens" <jik@cam.ov.com>
Date: Sun, 26 Mar 1995 22:01:20 -0500
To: krb5-bugs@MIT.EDU
A couple problems with Makefile.in and configure.in appl/telnet:
1) Makefile.in shouldn't have "CCOPTS=@CCOPTS@", since that's in
config/pre.in.
2) configure.in should have WITH_CCOPTS, because otherwise, @CCOPTS@
won't get substituted in config/pre.in, and if someone tries to do
"make" in the appl/telnet directory, CCOPTS will get set to @CCOPTS@
and passed down to sub-makes in the CCOPTS environment variable, which
will cause build errors because the string "@CCOPTS@" will show up on
the command line of every compile command.
Patches:
--- configure.in 1995/03/27 02:54:02 1.1
+++ configure.in 1995/03/27 02:54:10
@@ -1,4 +1,5 @@
AC_INIT(configure.in)
+WITH_CCOPTS
AC_SET_BUILDTOP
CONFIG_DIRS(libtelnet telnet telnetd)
MAKE_SUBDIRS("making",all)
--- Makefile.in 1995/03/27 02:52:20 1.1
+++ Makefile.in 1995/03/27 02:52:25
@@ -1 +0,0 @@
-CFLAGS=@CCOPTS@