summaryrefslogtreecommitdiffstats
path: root/src/admin
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1991-06-14 11:42:29 +0000
committerJohn Kohl <jtkohl@mit.edu>1991-06-14 11:42:29 +0000
commitd502e1d0fb86aff132e0c7971b32d850f6f05395 (patch)
tree7c20c460e4b456762670c934fc8648e6a3b599c5 /src/admin
parent44cbe6c7d9a51d6ea5bce74f0273e2f47b58584d (diff)
downloadkrb5-d502e1d0fb86aff132e0c7971b32d850f6f05395.tar.gz
krb5-d502e1d0fb86aff132e0c7971b32d850f6f05395.tar.xz
krb5-d502e1d0fb86aff132e0c7971b32d850f6f05395.zip
add convert to list, with NDBM magic
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2178 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/admin')
-rw-r--r--src/admin/Imakefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/admin/Imakefile b/src/admin/Imakefile
index 78835c40f6..01fe3d26bd 100644
--- a/src/admin/Imakefile
+++ b/src/admin/Imakefile
@@ -25,5 +25,13 @@
#define IHaveSubdirs
#define PassCDebugFlags
-SUBDIRS=create destroy edit stash aname
+#if HasNdbm
+/* the conversion program requires that you have the NDBM package rather
+ than the older DBM. */
+CONVERT=convert
+#else
+CONVERT=
+#endif
+
+SUBDIRS=create destroy edit stash aname $(CONVERT)
MakeSubdirs($(SUBDIRS))