2000-09-08 11:41:43 +00:00
|
|
|
--- Makefile.in.orig Thu Aug 3 19:00:01 2000
|
|
|
|
+++ Makefile.in Wed Aug 16 17:38:14 2000
|
|
|
|
@@ -95,14 +95,14 @@
|
2000-08-14 12:36:05 +00:00
|
|
|
# Modes for directories, executables and data files created by the
|
|
|
|
# install process. Default to group-writable directories but
|
|
|
|
# user-only-writable for executables and data files.
|
|
|
|
-DIRMODE= 775
|
|
|
|
+DIRMODE= 755
|
|
|
|
EXEMODE= 755
|
|
|
|
FILEMODE= 644
|
1997-02-06 13:11:20 +00:00
|
|
|
|
1998-01-06 08:03:13 +00:00
|
|
|
# Portable install script (configure doesn't always guess right)
|
|
|
|
INSTALL= @srcdir@/install-sh -c
|
|
|
|
-INSTALL_PROGRAM=${INSTALL} -m $(EXEMODE)
|
|
|
|
-INSTALL_DATA= ${INSTALL} -m $(FILEMODE)
|
|
|
|
+INSTALL_PROGRAM=${BSD_INSTALL_SCRIPT}
|
|
|
|
+INSTALL_DATA= ${BSD_INSTALL_DATA}
|
1997-02-06 13:11:20 +00:00
|
|
|
|
2000-08-14 12:36:05 +00:00
|
|
|
# Use this to make a link between python$(VERSION) and python in $(BINDIR)
|
|
|
|
LN=@LN@
|
2000-09-08 11:41:43 +00:00
|
|
|
@@ -259,7 +259,7 @@
|
|
|
|
# Install the library
|
|
|
|
PLATDIR= plat-$(MACHDEP)
|
|
|
|
MACHDEPS= $(PLATDIR)
|
|
|
|
-LIBSUBDIRS= lib-old lib-tk site-packages test test/output encodings \
|
|
|
|
+LIBSUBDIRS= lib-old lib-tk site-packages test test/output curses encodings \
|
|
|
|
distutils distutils/command $(MACHDEPS)
|
|
|
|
libinstall: python $(srcdir)/Lib/$(PLATDIR)
|
|
|
|
@for i in $(SCRIPTDIR) $(LIBDEST); \
|
|
|
|
@@ -303,6 +303,7 @@
|
|
|
|
case $$i in \
|
|
|
|
*CVS) ;; \
|
|
|
|
*.py[co]) ;; \
|
|
|
|
+ *.orig) ;; \
|
|
|
|
*~) ;; \
|
|
|
|
*) \
|
|
|
|
if test -d $$i; then continue; fi; \
|