[Python-checkins] CVS: python/dist/src Makefile.in,1.96,1.97

Fred L. Drake python-dev@python.org
Thu, 24 Aug 2000 11:11:24 -0700


Update of /cvsroot/python/python/dist/src
In directory slayer.i.sourceforge.net:/tmp/cvs-serv19156

Modified Files:
	Makefile.in 
Log Message:

Rene Liebscher <rliebscher@users.sourceforge.net>:
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.


Index: Makefile.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.in,v
retrieving revision 1.96
retrieving revision 1.97
diff -C2 -r1.96 -r1.97
*** Makefile.in	2000/08/17 11:38:17	1.96
--- Makefile.in	2000/08/24 18:11:21	1.97
***************
*** 406,409 ****
--- 406,426 ----
  		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
***************
*** 570,571 ****
--- 587,589 ----
  			-o -name MANIFEST \
  			-o -print
+ # IF YOU PUT ANYTHING HERE IT WILL GO AWAY