From: Fred Drake Date: Thu, 24 Aug 2000 18:11:21 +0000 (+0000) Subject: Rene Liebscher : X-Git-Tag: v2.0b1~272 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b0b7e317096e37bb4e88df22da6d6e6174d12405;p=thirdparty%2FPython%2Fcpython.git Rene Liebscher : Install the scripts in the BeOS directory, allowing use from the distutils on BeOS systems. The target location has been adjusted to match that used for the AIX helper scripts. This closes SourceForge patch #101207. --- diff --git a/Makefile.in b/Makefile.in index 88f4efea472c..8c499e9c28f3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -405,6 +405,23 @@ libainstall: all echo; echo "See Misc/AIX-NOTES for details."; \ else true; \ fi + @if [ "$(MACHDEP)" == "beos" ] ; then \ + echo; echo "Installing support files for building shared extension modules on BeOS:"; \ + $(INSTALL_DATA) BeOS/README $(LIBPL)/README; \ + echo; echo "$(LIBPL)/README"; \ + $(INSTALL_DATA) BeOS/README.readline-2.2 $(LIBPL)/README.readline-2.2; \ + echo "$(LIBPL)/README.readline-2.2"; \ + $(INSTALL_DATA) BeOS/dl_export.h $(LIBPL)/dl_export.h; \ + echo "$(LIBPL)/dl_export.h"; \ + $(INSTALL_PROGRAM) BeOS/ar-fake $(LIBPL)/ar-fake; \ + echo "$(LIBPL)/ar-fake"; \ + $(INSTALL_PROGRAM) BeOS/linkcc $(LIBPL)/linkcc; \ + echo "$(LIBPL)/linkcc"; \ + $(INSTALL_PROGRAM) BeOS/linkmodule $(LIBPL)/linkmodule; \ + echo "$(LIBPL)/linkmodule"; \ + echo; echo "See BeOS/README for details."; \ + else true; \ + fi # Install the dynamically loadable modules # This goes into $(exec_prefix) @@ -569,3 +586,4 @@ funny: -o -name .cvsignore \ -o -name MANIFEST \ -o -print +# IF YOU PUT ANYTHING HERE IT WILL GO AWAY