diff options
author | das <das> | 2002-10-16 23:56:02 (GMT) |
---|---|---|
committer | das <das> | 2002-10-16 23:56:02 (GMT) |
commit | 4daf29d9a0b9a8529bb1ce12c07efbe3ec1e0da7 (patch) | |
tree | 590fcb88cb7599724ee7492b79659d9948a1a19d /macosx/Makefile | |
parent | ff6a1ec7eaa5b8dab045068c4321868cf1865e38 (diff) | |
download | tk-4daf29d9a0b9a8529bb1ce12c07efbe3ec1e0da7.zip tk-4daf29d9a0b9a8529bb1ce12c07efbe3ec1e0da7.tar.gz tk-4daf29d9a0b9a8529bb1ce12c07efbe3ec1e0da7.tar.bz2 |
* macosx/README: info specific to building and running
TclTk on Mac OS X, answers to tcl-mac list FAQs.
* macosx/Makefile: permission fix after embedded install.
* macosx/Wish.pbproj/project.pbxproj: after install, fix
permissions of uninstalled products.
Diffstat (limited to 'macosx/Makefile')
-rw-r--r-- | macosx/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/Makefile b/macosx/Makefile index aecdc8d..8a3c4e5 100644 --- a/macosx/Makefile +++ b/macosx/Makefile @@ -3,7 +3,7 @@ # Simple makefile for building on Mac OS X with the # Project Builder command line tool 'pbxbuild' # -# RCS: @(#) $Id: Makefile,v 1.5 2002/10/09 13:02:08 das Exp $ +# RCS: @(#) $Id: Makefile,v 1.6 2002/10/16 23:56:02 das Exp $ # ################################################################################ @@ -86,7 +86,9 @@ cleanup-embedded: @-cd ${INSTALL_ROOT}; \ rm -f Frameworks; \ rm -rf @executable_path; \ + chmod -RH u+w Library/Frameworks/Tcl.framework; \ rm -rf Library/Frameworks/Tcl.framework; \ + chmod -RH u+w Library/Frameworks/Tk.framework; \ rm -rf Library/Frameworks/Tk.framework; \ rmdir -p Library/Frameworks 2>&-; |