~ubuntu-branches/debian/lenny/cracklib2/lenny

« back to all changes in this revision

Viewing changes to util/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jan Dittberner, Steve Langasek, Jan Dittberner
  • Date: 2008-10-16 21:04:24 UTC
  • mfrom: (4.1.2 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081016210424-bp06uo8c6xkjabzi
Tags: 2.8.12-8lenny1
[ Steve Langasek ]
* debian/update-cracklib: don't rely on [ -nt ] to return true when
  the second file is non-existent, since this fails under dash.
  LP: #278743.

[ Jan Dittberner ]
* integrate Ubuntu bugfix
* use set -e in debian/cracklib-runtime.preinst to fix lintian warning
  maintainer-script-ignores-errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
sbin_PROGRAMS = cracklib-packer cracklib-unpacker cracklib-check
 
2
 
 
3
noinst_PROGRAMS = testlib testnum teststr 
 
4
 
 
5
sbin_SCRIPTS = create-cracklib-dict cracklib-format
 
6
 
 
7
EXTRA_DIST = create-cracklib-dict cracklib-format
 
8
 
 
9
LDADD = ../lib/libcrack.la
 
10
 
 
11
AM_CPPFLAGS = -I. -I.. -I$(top_srcdir)/lib '-DDEFAULT_CRACKLIB_DICT="$(DEFAULT_CRACKLIB_DICT)"'
 
12
 
 
13
cracklib_check_SOURCES = check.c
 
14
cracklib_check_LDADD = $(LDADD)
 
15
 
 
16
cracklib_packer_SOURCES = packer.c
 
17
cracklib_packer_LDADD = $(LDADD)
 
18
 
 
19
cracklib_unpacker_SOURCES = unpacker.c
 
20
cracklib_unpacker_LDADD = $(LDADD)
 
21
 
 
22
testlib_SOURCES = testlib.c
 
23
testlib_LDADD = $(LDADD)
 
24
 
 
25
testnum_SOURCES = testnum.c
 
26
testnum_LDADD = $(LDADD)
 
27
 
 
28
teststr_SOURCES = teststr.c
 
29
teststr_LDADD = $(LDADD)
 
30