Install config.h, so compiling extensions from C sources

actually works.
This commit is contained in:
Thomas Gellekum 1997-02-06 13:11:20 +00:00
parent 0f6128e1b8
commit a80debf805
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=5552
30 changed files with 360 additions and 375 deletions

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h

View file

@ -1,25 +1,23 @@
*** Makefile.in.orig Wed Jul 31 19:30:37 1996 --- Makefile.in.orig Fri Oct 25 16:37:32 1996
--- Makefile.in Sun Aug 18 11:15:25 1996 +++ Makefile.in Thu Feb 6 12:02:11 1997
*************** @@ -95,10 +95,10 @@
*** 88,97 ****
# Expanded directories
# Expanded directories BINDIR= $(exec_prefix)/bin
BINDIR= $(exec_prefix)/bin -LIBDIR= $(exec_prefix)/lib
! LIBDIR= $(exec_prefix)/lib +LIBDIR= $(exec_prefix)/share
MANDIR= $(prefix)/man MANDIR= $(prefix)/man
INCLUDEDIR= $(prefix)/include INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/lib -SCRIPTDIR= $(prefix)/lib
+SCRIPTDIR= $(prefix)/share
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION) # Detailed destination directories
--- 88,97 ---- BINLIBDEST= $(LIBDIR)/python$(VERSION)
@@ -288,6 +288,7 @@
# Expanded directories echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
BINDIR= $(exec_prefix)/bin $(INSTALL_DATA) $$i $(INCLUDEPY); \
! LIBDIR= $(exec_prefix)/share done
MANDIR= $(prefix)/man + $(INSTALL_DATA) config.h $(INCLUDEPY)
INCLUDEDIR= $(prefix)/include
! SCRIPTDIR= $(prefix)/share # Install the lib*.a files and miscellaneous stuff needed by extensions
# This goes into $(exec_prefix)
# Detailed destination directories
BINLIBDEST= $(LIBDIR)/python$(VERSION)

View file

@ -411,6 +411,7 @@ include/python1.4/classobject.h
include/python1.4/cobject.h include/python1.4/cobject.h
include/python1.4/compile.h include/python1.4/compile.h
include/python1.4/complexobject.h include/python1.4/complexobject.h
include/python1.4/config.h
include/python1.4/dictobject.h include/python1.4/dictobject.h
include/python1.4/errcode.h include/python1.4/errcode.h
include/python1.4/eval.h include/python1.4/eval.h