bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gdbm-1.8.0/configure doesn't honor --prefix


From: Eric Buddington
Subject: gdbm-1.8.0/configure doesn't honor --prefix
Date: Thu, 15 Mar 2001 17:19:58 -0500
User-agent: Mutt/1.2.5i

I think there is more to be touched up in Makefile.in,
but I think this fixes the install problem properly:

--- gdbm-1.8.0/Makefile.in.orig Thu Mar 15 16:59:10 2001
+++ gdbm-1.8.0/Makefile.in      Thu Mar 15 17:17:13 2001
@@ -31,18 +31,16 @@
 LDFLAGS =
 
 # Common prefix for installation directories
-prefix = /usr/local
-exec_prefix = $(prefix)
-binprefix = $(exec_prefix)
-manprefix = $(prefix)
+prefix = @prefix@
+exec_prefix = @exec_prefix@
 
 # Directory in which to put libgdbm.a.
-libdir = $(exec_prefix)/lib
+libdir = @libdir@
 # The include directory for gdbm.h and dbm.h.
-includedir = $(prefix)/include
+includedir = @includedir@
 # Info and man directories.
-infodir = $(prefix)/info
-man3dir = $(prefix)/man/man3
+infodir = @infodir@
+man3dir = @mandir@/man3
 manext = 3
 
 #### End of system configuration section. ####



reply via email to

[Prev in Thread] Current Thread [Next in Thread]