Bug 1256584 - Remove AC_PROG_INSTALL and AC_PROG_LN_S draft
authorMike Hommey <mh+mozilla@glandium.org>
Tue, 15 Mar 2016 17:55:10 +0900
changeset 340450 a0159169eb568e9442622819bbe5bec7189e8a4c
parent 340449 3472fb32d5d8b3d830ea86474f258cbbeaba873b
child 340452 335041a03821d5886230958bbe12bdfe32301e47
push id12965
push userbmo:mh+mozilla@glandium.org
push dateTue, 15 Mar 2016 08:56:33 +0000
bugs1256584
milestone48.0a1
Bug 1256584 - Remove AC_PROG_INSTALL and AC_PROG_LN_S We don't use the result of those tests: - INSTALL is set in config.mk to something derived from NSINSTALL. - LN_S is never used.
js/src/old-configure.in
old-configure.in
--- a/js/src/old-configure.in
+++ b/js/src/old-configure.in
@@ -446,19 +446,16 @@ AC_SUBST(GNU_LD)
 AC_SUBST(GNU_CC)
 AC_SUBST(GNU_CXX)
 AC_SUBST(INTEL_CC)
 AC_SUBST(INTEL_CXX)
 
 dnl ========================================================
 dnl Checks for programs.
 dnl ========================================================
-AC_PROG_INSTALL
-AC_PROG_LN_S
-
 AC_MSG_CHECKING([for tar archiver])
 AC_CHECK_PROGS(TAR, gnutar gtar tar, "")
 if test -z "$TAR"; then
     AC_MSG_WARN([no tar archiver found in \$PATH])
 fi
 AC_MSG_RESULT([$TAR])
 AC_SUBST(TAR)
 
--- a/old-configure.in
+++ b/old-configure.in
@@ -683,19 +683,16 @@ AC_SUBST(INTEL_CXX)
 
 AC_SUBST(STL_FLAGS)
 AC_SUBST(WRAP_STL_INCLUDES)
 AC_SUBST(MOZ_MSVC_STL_WRAP_RAISE)
 
 dnl ========================================================
 dnl Checks for programs.
 dnl ========================================================
-AC_PROG_INSTALL
-AC_PROG_LN_S
-
 if test -z "$COMPILE_ENVIRONMENT"; then
     NSINSTALL_BIN='$(PYTHON) $(MOZILLA_DIR)/config/nsinstall.py'
 fi
 AC_SUBST(NSINSTALL_BIN)
 
 if test "$COMPILE_ENVIRONMENT"; then
 
 dnl ========================================================