diff options
author | wtc%netscape.com <devnull@localhost> | 2001-06-02 03:03:58 +0000 |
---|---|---|
committer | wtc%netscape.com <devnull@localhost> | 2001-06-02 03:03:58 +0000 |
commit | bca16ac2b0b4ce42fe9809eac4c16cf0de21572d (patch) | |
tree | 437a29f3e9c14f076ae670f0e83aa6e95117a5fd | |
parent | d9d8b9e557f3d6183bc5a0408233f9f4e32d412e (diff) | |
download | nss-hg-bca16ac2b0b4ce42fe9809eac4c16cf0de21572d.tar.gz |
It is more efficient to use := to when the value of the assignment is
$(shell ...).
-rw-r--r-- | security/nss/lib/freebl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/lib/freebl/Makefile b/security/nss/lib/freebl/Makefile index fc496fde0..ab2fa8bea 100644 --- a/security/nss/lib/freebl/Makefile +++ b/security/nss/lib/freebl/Makefile @@ -286,7 +286,7 @@ FILES2LN = \ LINKEDFILES = $(addprefix $(PURE32DIR)/, $(FILES2LN)) -CDDIR=$(shell pwd) +CDDIR := $(shell pwd) $(PURE32DIR): -mkdir $(PURE32DIR) |