$NetBSD: patch-aa,v 1.2 2003/05/22 07:30:15 wiz Exp $ --- Makefile.orig Wed Dec 31 02:33:53 1997 +++ Makefile Tue Mar 25 15:14:02 2003 @@ -9,12 +9,12 @@ ### # set this to the absolute path (less extn) of compressed dict. -DICTPATH="/usr/local/lib/pw_dict" +DICTPATH="${PREFIX}/libdata/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,15 +24,15 @@ @echo "you evidently don't know what you're doing. go read the README" all: - ( cd cracklib && make && exit $$? ) - ( cd util && make DICTPATH=$(DICTPATH) && exit $$? ) -### ( cd passwd && make DICTPATH=$(DICTPATH) passwd && exit $$? ) + ( cd cracklib && $(MAKE) && exit $$? ) + ( cd util && $(MAKE) DICTPATH=$(DICTPATH) && exit $$? ) +### ( cd passwd && $(MAKE) DICTPATH=$(DICTPATH) passwd && exit $$? ) ### touch all clean: - -( cd cracklib && make clean && exit $$? ) - -( cd util && make clean && exit $$? ) -### -( cd passwd && make clean && exit $$? ) + -( cd cracklib && $(MAKE) clean && exit $$? ) + -( cd util && $(MAKE) clean && exit $$? ) +### -( cd passwd && $(MAKE) clean && exit $$? ) -rm -f all installed Part* *.BAK *.bak *~ install: all