diff options
author | das <das> | 2005-05-26 11:18:14 (GMT) |
---|---|---|
committer | das <das> | 2005-05-26 11:18:14 (GMT) |
commit | e71c1f4ae2af9702d5f0aa3a63f7ef60474ad0be (patch) | |
tree | b586729fe660d15afb9b892ce7f0ac420b8e8286 /macosx | |
parent | aec7e166712727c249337002f1fb866821458262 (diff) | |
download | tcl-e71c1f4ae2af9702d5f0aa3a63f7ef60474ad0be.zip tcl-e71c1f4ae2af9702d5f0aa3a63f7ef60474ad0be.tar.gz tcl-e71c1f4ae2af9702d5f0aa3a63f7ef60474ad0be.tar.bz2 |
* macosx/Makefile: moved & corrected EMBEDDED_BUILD check.
* unix/configure.in: corrected framework finalization to softlink
stub library to Versions/8.x subdir instead of Versions/Current.
* unix/configure: autoconf-2.59
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/macosx/Makefile b/macosx/Makefile index f85ac3e..3d30e66 100644 --- a/macosx/Makefile +++ b/macosx/Makefile @@ -4,7 +4,7 @@ # uses the standard unix build system in tcl/unix (which can be used directly instead of this # if you are not using the tk/macosx projects). # -# RCS: @(#) $Id: Makefile,v 1.20 2005/05/23 20:21:02 das Exp $ +# RCS: @(#) $Id: Makefile,v 1.21 2005/05/26 11:18:20 das Exp $ # ######################################################################################################## @@ -130,11 +130,6 @@ ${OBJ_DIR}/Makefile: ${UNIX_DIR}/Makefile.in ${UNIX_DIR}/configure ${CONFIGURE_ARGS} ${EXTRA_CONFIGURE_ARGS} build-${PROJECT}: ${OBJ_DIR}/Makefile -ifeq (${EMBEDDED_BUILD}_${INSTALL_ROOT},1_) - @echo "Cannot install-embedded with empty INSTALL_ROOT !" && false -else - @rm -rf "${INSTALL_ROOT}/${LIBDIR}/Tcl.framework" -endif ${DO_MAKE} # symolic link hackery to trick # 'make install INSTALL_ROOT=${OBJ_DIR}' @@ -144,6 +139,12 @@ endif ln -fs ${SYMROOT} ./${BINDIR} && ln -fs ${OBJ_DIR}/tcltest ${SYMROOT} install-${PROJECT}: build-${PROJECT} +ifeq (${EMBEDDED_BUILD}_${INSTALL_ROOT},1_) + @echo "Cannot install-embedded with empty INSTALL_ROOT !" && false +endif +ifeq (${EMBEDDED_BUILD},1) + @rm -rf "${INSTALL_ROOT}/${LIBDIR}/Tcl.framework" +endif ${DO_MAKE} ifeq (${INSTALL_BUILD},1) ifeq (${EMBEDDED_BUILD},1) |