diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-05-16 07:42:56 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-08-31 04:32:58 +0800 |
commit | 65482f1fa3d4039f1c5753787ff597f000268397 (patch) | |
tree | 6dc25971e422626df69827e9a88285062262ad67 | |
parent | 3f4167ee98951aa84fac3ef3d3e35d0dd005532d (diff) | |
download | gsoc2013-epiphany-65482f1fa3d4039f1c5753787ff597f000268397.tar gsoc2013-epiphany-65482f1fa3d4039f1c5753787ff597f000268397.tar.gz gsoc2013-epiphany-65482f1fa3d4039f1c5753787ff597f000268397.tar.bz2 gsoc2013-epiphany-65482f1fa3d4039f1c5753787ff597f000268397.tar.lz gsoc2013-epiphany-65482f1fa3d4039f1c5753787ff597f000268397.tar.xz gsoc2013-epiphany-65482f1fa3d4039f1c5753787ff597f000268397.tar.zst gsoc2013-epiphany-65482f1fa3d4039f1c5753787ff597f000268397.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 73badfc7b..79a87ad74 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -26,16 +26,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 = \ |