* configure.in: Removed some abuses of CPPFLAGS. Removed useless

tests for cp, mv and rm.
* Make.common.in: Removed variables xv_bindir and STRIP.
Variables CP, MV and RMF are assigned trivial values.
This commit is contained in:
Pavel Roskin 2000-09-14 20:10:45 +00:00
parent 536a5ce8d5
commit 8d204881e7
3 changed files with 9 additions and 13 deletions

View File

@ -1,5 +1,10 @@
2000-09-14 Pavel Roskin <proski@gnu.org>
* configure.in: Removed some abuses of CPPFLAGS. Removed useless
tests for cp, mv and rm.
* Make.common.in: Removed variables xv_bindir and STRIP.
Variables CP, MV and RMF are assigned trivial values.
* edit/Makefile.in: Don't link headers, add extra includes
to CPPFLAGS instead. Put links to the build directory.
Remove the hack with "mx" - it is not needed anymore.

View File

@ -22,7 +22,6 @@ datadir = @datadir@
libdir = @libdir@
mandir = @mandir@
gnomeicondir = @gnomeicondir@
xv_bindir = @xv_bindir@
corbadir = $(sysconfdir)/CORBA/servers
mclibdir = $(libdir)/mc
desktopdir = $(mclibdir)/desktop-scripts
@ -44,16 +43,14 @@ man8ext = 8
MKINSTALLDIRS = @MKINSTALLDIRS@
SEDCMD = @SEDCMD@
SEDCMD2 = @SEDCMD2@
STRIP = @STRIP@
@SET_MAKE@
CC = @CC@
CPP = @CPP@
AR = @AR@
RANLIB = @RANLIB@
RM = @RM@
RMF = @RM@ -f
MV = @MV@
CP = @CP@
RMF = rm -f
MV = mv
CP = mv
LN_S = @LN_S@
AWK = @AWK@
AWK_VAR_OPTION = @AWK_VAR_OPTION@

View File

@ -50,9 +50,6 @@ AC_ISC_POSIX
MC_HPUX_PROG_CC_STDC
AC_HEADER_MAJOR
AC_C_CONST
AC_PATH_PROG(MV, mv, mv)
AC_PATH_PROG(CP, cp, cp)
AC_PATH_PROG(RM, rm, rm)
AC_PATH_PROG(CHMOD, chmod, :)
AC_PATH_PROG(AR, ar, ar)
@ -460,8 +457,7 @@ AC_ARG_WITH(osf1-curses,
AC_ARG_WITH(vcurses,
[--with-vcurses[=incdir] Used to force SysV curses],
if test x$withval = xyes; then
CPPFLAGS="$CPPFLAGS"
if test x$withval = xyes; then :
else
CPPFLAGS="$CPPFLAGS -I$withval"
fi
@ -717,7 +713,6 @@ dnl
if test x$GCC = x
then
AC_DEFINE(OLD_TOOLS)
CPPFLAGS="$CPPFLAGS"
fi
dnl
@ -1177,7 +1172,6 @@ esac
LIBS="$LIBS $posix_libs"
CPPFLAGS="-I.. $CPPFLAGS"
AC_SUBST(CFLAGS)
AC_SUBST(CPPFLAGS)
AC_SUBST(MCCPPFLAGS)