File tree 2 files changed +12
-3
lines changed 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.13 1997/03/25 07:16:30 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.14 1997/03/26 06:53:57 scrappy Exp $
11
11
#
12
12
# NOTES
13
13
# Essentially all Postgres make files include this file and use the
@@ -82,7 +82,7 @@ LIBPQDIR:= $(SRCDIR)/libpq
82
82
# For convenience, POSTGRESDIR is where BINDIR, and LIBDIR
83
83
# and other target destinations are rooted. Of course, each of these is
84
84
# changable separately.
85
- POSTGRESDIR= /usr/local/pgsql
85
+ POSTGRESDIR= @prefix@
86
86
87
87
# Where the postgres executables live (changeable by just putting them
88
88
# somewhere else and putting that directory in your shell PATH)
Original file line number Diff line number Diff line change 30
30
LDFLAGS=" $ADD_LIB_DIRS " ; export LDFLAGS
31
31
fi
32
32
33
- ./configure
33
+ $ECHO_N " Installation directory [/usr/local/pgsql]: $ECHO_C "
34
+ read a
35
+ if [ " $a ." != " ." ]
36
+ then
37
+ IDIR=${a}
38
+ else
39
+ IDIR=/usr/local/pgsql
40
+ fi
41
+
42
+ ./configure --prefix=${IDIR}
34
43
You can’t perform that action at this time.
0 commit comments