blob: 93d4db588f3c95c08f14abf469d008ff211d6ed1 (
plain) (
blame)
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
|
--- Makefile.orig Wed Dec 31 02:33:53 1997
+++ Makefile Mon Mar 15 04:46:29 2004
@@ -9,12 +9,12 @@
###
# set this to the absolute path (less extn) of compressed dict.
-DICTPATH="/usr/local/lib/pw_dict"
+DICTPATH="/usr/local/libdata/cracklib/pw_dict"
###
# Set this to the path of one or more files continaing wordlists.
-SRCDICTS=/usr/dict/words
+SRCDICTS=/usr/share/dict/words
###
# If you have installed the cracklib-dicts directory, use this
@@ -24,7 +24,7 @@
@echo "you evidently don't know what you're doing. go read the README"
all:
- ( cd cracklib && make && exit $$? )
+ ( cd cracklib && make all && exit $$? )
( cd util && make DICTPATH=$(DICTPATH) && exit $$? )
### ( cd passwd && make DICTPATH=$(DICTPATH) passwd && exit $$? )
### touch all
|