diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-08 05:03:55 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-08 05:03:55 +0000 |
commit | caee98b5322babe97c33a64141a413f430e9a8ba (patch) | |
tree | a4140c3996f7d178ca02df7e8b764f10a93b8b63 /Makefile.in | |
parent | 36e3009461df70159a9dad1906c23fc51491f761 (diff) | |
download | fetchmail-caee98b5322babe97c33a64141a413f430e9a8ba.tar.gz fetchmail-caee98b5322babe97c33a64141a413f430e9a8ba.tar.bz2 fetchmail-caee98b5322babe97c33a64141a413f430e9a8ba.zip |
Bug fixes and better RC file documentation.
svn path=/trunk/; revision=243
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index 8960f52b..ecfea794 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,7 +3,7 @@ # If you're running QNX, we can't assume a working autoconf. # So just uncomment all the lines marked QNX. -VERS=1.6 +VERS=1.7 # Ultrix 2.2 make doesn't expand the value of VPATH. srcdir = @srcdir@ @@ -40,20 +40,20 @@ EXTRASRC = @EXTRASRC@ EXTRAOBJ = @EXTRAOBJ@ # Common prefix for machine-independent installed files. -prefix = /usr/local +prefix = @prefix@ # Common prefix for machine-dependent installed files. -exec_prefix = $(prefix) +exec_prefix = @exec_prefix@ # Name under which to install fetchmail instname = fetchmail # Directory in which to install. -bindir = $(exec_prefix)/bin +bindir = @bindir@ # Directory to install the Info files in. -infodir = $(prefix)/info +infodir = @infodir@ # Number to put on the man page filename. manext = 1 # Directory to install the man page in. -mandir = $(prefix)/man/man$(manext) +mandir = @mandir@/man$(manext) # Program to install `make'. INSTALL_PROGRAM = @INSTALL_PROGRAM@ |