forked from ChrisCreevey/clann
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL
More file actions
37 lines (25 loc) · 738 Bytes
/
INSTALL
File metadata and controls
37 lines (25 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
to install type:
"./configure"
followed by:
"make"
Clann will then be located in this directory
######
Note: If running "make" returns an error such as:
CDPATH="${ZSH_VERSION+.}:" && cd . && aclocal-1.16
/bin/sh: aclocal-1.16: command not found
make: *** [aclocal.m4] Error 127
try running:
"autoreconf -f -i"
followed by:
"./configure"
"make"
to resolve the issue (Thanks to Michael Broe for suggesting this fix).
#######
the use of "make install" may not work depending on write privileges
=======
# Special Note: if you get this message when doing the "./configure" command:
"-bash: ./configure: Permission denied"
# then do the following command:
"chmod +x configure"
and then continue on to:
"make"