Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 72c8af5

Browse files
committed
Move disabled message up to a higher makefile.
1 parent 3bcf19d commit 72c8af5

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

src/pl/Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.18 2001/05/09 19:54:38 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.19 2001/05/10 03:00:11 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -22,11 +22,12 @@ ifeq ($(with_perl), yes)
2222
DIRS += plperl
2323
endif
2424

25-
ifeq ($(with_python), yes)
26-
DIRS += plpython
27-
endif
25+
#ifeq ($(with_python), yes)
26+
#DIRS += plpython
27+
#endif
2828

2929
all install installdirs uninstall depend distprep:
30+
@echo "PL/Python disabled until merged into our Makefile system, bjm 2001-05-09"
3031
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
3132

3233
clean distclean maintainer-clean:

src/pl/plpython/Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,7 @@ LDFLAGS=--shared -Wl,-E -Wl,-soname,$@
5656

5757
.PHONY: clean
5858

59-
all:
60-
@echo "Disabled until merged into our Makefile system, bjm 2001-05-09"
61-
62-
disabled: plpython.so
59+
all: plpython.so
6360

6461
plpython.o: plpython.c plpython.h
6562
$(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<

0 commit comments

Comments
 (0)