forked from minhngoc25a/freetype2
Remove useless `rm' detection.
`rm -f' is directly used in the `configure' script created by autoconf, thus no availability test is necessary. * builds/unix/configure.raw (RMF): Remove test. * builds/unix/unix-def.in (DELETE): Updated.
This commit is contained in:
parent
bf745003e9
commit
be81ec22cc
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2012-09-30 Gilles Espinasse <g.esp@free.fr>
|
||||
|
||||
Remove useless `rm' detection.
|
||||
|
||||
`rm -f' is directly used in the `configure' script created by
|
||||
autoconf, thus no availability test is necessary.
|
||||
|
||||
* builds/unix/configure.raw (RMF): Remove test.
|
||||
* builds/unix/unix-def.in (DELETE): Updated.
|
||||
|
||||
2012-09-29 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[autofit] Minor optimization.
|
||||
|
|
|
@ -66,10 +66,8 @@ AC_SUBST(CC_BUILD)
|
|||
AC_SUBST(EXEEXT_BUILD)
|
||||
|
||||
|
||||
|
||||
# auxiliary programs
|
||||
|
||||
AC_CHECK_PROG([RMF], [rm], [rm -f])
|
||||
AC_CHECK_PROG([RMDIR], [rmdir], [rmdir])
|
||||
|
||||
|
||||
|
@ -125,7 +123,7 @@ echo >> conftest.c "#endif"
|
|||
|
||||
${CPP} ${CPPFLAGS} conftest.c | ${GREP} ac_cpp_ft > conftest.sh
|
||||
eval `cat conftest.sh`
|
||||
${RMF} conftest.c conftest.sh confft2build.h ftoption.h ftstdlib.h
|
||||
rm -f conftest.c conftest.sh confft2build.h ftoption.h ftstdlib.h
|
||||
|
||||
if test x != "x${ac_cpp_ft_sizeof_int}" \
|
||||
-a x != x"${ac_cpp_ft_sizeof_long}"; then
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
TOP_DIR := $(shell cd $(TOP_DIR); pwd)
|
||||
|
||||
DELETE := @RMF@
|
||||
DELETE := rm -f
|
||||
DELDIR := @RMDIR@
|
||||
CAT := cat
|
||||
SEP := /
|
||||
|
|
Loading…
Reference in New Issue