mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
5866f48b31
- build some modules as shared objects, reducing the interpreter's size and removing the dependency on tix - install shared objects in lib - remove version number from OS-dependent script dir A new port of PyTix will follow shortly.
20 lines
583 B
Plaintext
20 lines
583 B
Plaintext
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
|
+++ Makefile.in Mon May 12 21:04:38 1997
|
|
@@ -98,7 +98,7 @@
|
|
LIBDIR= $(exec_prefix)/lib
|
|
MANDIR= $(prefix)/man
|
|
INCLUDEDIR= $(prefix)/include
|
|
-SCRIPTDIR= $(prefix)/lib
|
|
+SCRIPTDIR= $(prefix)/share
|
|
|
|
# Detailed destination directories
|
|
BINLIBDEST= $(LIBDIR)/python$(VERSION)
|
|
@@ -288,6 +288,7 @@
|
|
echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
|
|
$(INSTALL_DATA) $$i $(INCLUDEPY); \
|
|
done
|
|
+ $(INSTALL_DATA) config.h $(INCLUDEPY)
|
|
|
|
# Install the lib*.a files and miscellaneous stuff needed by extensions
|
|
# This goes into $(exec_prefix)
|