summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwchang0222%aol.com <devnull@localhost>2003-11-18 04:04:05 +0000
committerwchang0222%aol.com <devnull@localhost>2003-11-18 04:04:05 +0000
commit90ff659ea44c6ed291b094b96322ae8000fae340 (patch)
tree00fe157c141a01bf745862d1c86b265dd9c8bf64
parent7fd76176db7f637dc565bcd119ff321f6975096b (diff)
downloadnss-hg-90ff659ea44c6ed291b094b96322ae8000fae340.tar.gz
Most platforms use ':' as path separator, but OS/2 uses ';'. So we use
vpath directivies that specify a single directory to avoid dealing with path separator.
-rw-r--r--security/nss/lib/freebl/Makefile15
1 files changed, 10 insertions, 5 deletions
diff --git a/security/nss/lib/freebl/Makefile b/security/nss/lib/freebl/Makefile
index ff770c198..e2a8014b5 100644
--- a/security/nss/lib/freebl/Makefile
+++ b/security/nss/lib/freebl/Makefile
@@ -278,11 +278,16 @@ vpath %.s $(FREEBL_PARENT)/ecl:$(FREEBL_PARENT)/mpi:$(FREEBL_PARENT)
vpath %.asm $(FREEBL_PARENT)/ecl:$(FREEBL_PARENT)/mpi:$(FREEBL_PARENT)
INCLUDES += -I$(FREEBL_PARENT) -I$(FREEBL_PARENT)/mpi -I$(FREEBL_PARENT)/ecl
else
-vpath %.h mpi:ecl
-vpath %.c mpi:ecl
-vpath %.S mpi:ecl
-vpath %.s mpi:ecl
-vpath %.asm mpi:ecl
+vpath %.h mpi
+vpath %.h ecl
+vpath %.c mpi
+vpath %.c ecl
+vpath %.S mpi
+vpath %.S ecl
+vpath %.s mpi
+vpath %.s ecl
+vpath %.asm mpi
+vpath %.asm ecl
INCLUDES += -Impi -Iecl
endif