diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-05-16 07:42:56 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-06-04 16:09:35 +0800 |
commit | 0f710fe18f9d315254f367e897ceb9fb786ca686 (patch) | |
tree | 50ffc24ed7cfac96f95e529981bc0d9bef8a297a | |
parent | 137389a43aa67a0e829c1c7c02c64bfcd5abca0e (diff) | |
download | gsoc2013-epiphany-0f710fe18f9d315254f367e897ceb9fb786ca686.tar.gz gsoc2013-epiphany-0f710fe18f9d315254f367e897ceb9fb786ca686.tar.zst gsoc2013-epiphany-0f710fe18f9d315254f367e897ceb9fb786ca686.zip |
tests: fix wrong variable name in Makefile
-rw-r--r-- | tests/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 6fe7e9c38..bd2c378ba 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -27,16 +27,16 @@ LDADD = \ if ENABLE_NSS CFLAGS += \ - $(NSS_CFLAGS) + $(NSS_CFLAGS) LDADD += \ - $(NSS_LIBS) + $(NSS_LIBS) endif -if ENABLE_NSS +if ENABLE_SEED CFLAGS += \ - $(SEED_CFLAGS) + $(SEED_CFLAGS) LDADD += \ - $(SEED_LIBS) + $(SEED_LIBS) endif testephyembedpersist_SOURCES = \ |