summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbriano%netscape.com <devnull@localhost>1999-07-29 01:17:38 +0000
committerbriano%netscape.com <devnull@localhost>1999-07-29 01:17:38 +0000
commite9c04de21b423f69a8e51c5ad708d48fd0a8775b (patch)
treebd5525c485bf97bc36bdb78d227e146ae1ff75a2
parent616ad07f4f585d1f59c65484d34a545ee55e7f87 (diff)
downloadnss-hg-e9c04de21b423f69a8e51c5ad708d48fd0a8775b.tar.gz
Trivial elimination of some pointless macros as discussed in bug 8568. Approved by leaf@mozilla.org.
-rw-r--r--dbm/src/Makefile.in2
-rw-r--r--dbm/tests/Makefile.in10
2 files changed, 4 insertions, 8 deletions
diff --git a/dbm/src/Makefile.in b/dbm/src/Makefile.in
index f44c55409..26e76b014 100644
--- a/dbm/src/Makefile.in
+++ b/dbm/src/Makefile.in
@@ -23,7 +23,7 @@ srcdir = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = dbm
-LIBRARY_NAME = $(MOZ_LIB_DBM_PREFIX)dbm
+LIBRARY_NAME = mozdbm
LIB_IS_C_ONLY = 1
diff --git a/dbm/tests/Makefile.in b/dbm/tests/Makefile.in
index 8fe4ea513..2d8b5a44a 100644
--- a/dbm/tests/Makefile.in
+++ b/dbm/tests/Makefile.in
@@ -1,4 +1,3 @@
-#!gmake
#
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
@@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
+#
DEPTH = ../..
topsrcdir = @top_srcdir@
@@ -24,15 +24,11 @@ include $(DEPTH)/config/autoconf.mk
MODULE = dbm
-CSRCS = lots.c
-
PROGRAM = lots
-#REQUIRES = $(MOZ_LIB_DBM_PREFIX)dbm
+CSRCS = lots.c
-LIBS = \
- -l$(MOZ_LIB_DBM_PREFIX)dbm \
- $(NULL)
+LIBS = -lmozdbm
include $(topsrcdir)/config/rules.mk