Skip to content

Commit 5a1a3fd

Browse files
author
Felipe Zimmerle
committed
Automake: Using ../ instead of $(top_srcdir)
After enable `subdir-objects', the variable $(top_srcdir) was not being resolved, a directory labeled "$(top_srcdir)" was created instead.
1 parent 220161c commit 5a1a3fd

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

tests/Makefile.am

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
check_PROGRAMS = msc_test
22
msc_test_SOURCES = msc_test.c \
3-
$(top_srcdir)/apache2/acmp.c \
4-
$(top_srcdir)/apache2/libinjection/libinjection_html5.c \
5-
$(top_srcdir)/apache2/libinjection/libinjection_sqli.c \
6-
$(top_srcdir)/apache2/libinjection/libinjection_xss.c \
7-
$(top_srcdir)/apache2/modsecurity.c \
8-
$(top_srcdir)/apache2/msc_crypt.c \
9-
$(top_srcdir)/apache2/msc_geo.c \
10-
$(top_srcdir)/apache2/msc_gsb.c \
11-
$(top_srcdir)/apache2/msc_json.c \
12-
$(top_srcdir)/apache2/msc_logging.c \
13-
$(top_srcdir)/apache2/msc_lua.c \
14-
$(top_srcdir)/apache2/msc_multipart.c \
15-
$(top_srcdir)/apache2/msc_parsers.c \
16-
$(top_srcdir)/apache2/msc_pcre.c \
17-
$(top_srcdir)/apache2/msc_release.c \
18-
$(top_srcdir)/apache2/msc_reqbody.c \
19-
$(top_srcdir)/apache2/msc_tree.c \
20-
$(top_srcdir)/apache2/msc_unicode.c \
21-
$(top_srcdir)/apache2/msc_util.c \
22-
$(top_srcdir)/apache2/msc_xml.c \
23-
$(top_srcdir)/apache2/persist_dbm.c \
24-
$(top_srcdir)/apache2/re_actions.c \
25-
$(top_srcdir)/apache2/re.c \
26-
$(top_srcdir)/apache2/re_operators.c \
27-
$(top_srcdir)/apache2/re_tfns.c \
28-
$(top_srcdir)/apache2/re_variables.c \
29-
$(top_srcdir)/standalone/regex.c \
30-
$(top_srcdir)/standalone/server.c
3+
../apache2/acmp.c \
4+
../apache2/libinjection/libinjection_html5.c \
5+
../apache2/libinjection/libinjection_sqli.c \
6+
../apache2/libinjection/libinjection_xss.c \
7+
../apache2/modsecurity.c \
8+
../apache2/msc_crypt.c \
9+
../apache2/msc_geo.c \
10+
../apache2/msc_gsb.c \
11+
../apache2/msc_json.c \
12+
../apache2/msc_logging.c \
13+
../apache2/msc_lua.c \
14+
../apache2/msc_multipart.c \
15+
../apache2/msc_parsers.c \
16+
../apache2/msc_pcre.c \
17+
../apache2/msc_release.c \
18+
../apache2/msc_reqbody.c \
19+
../apache2/msc_tree.c \
20+
../apache2/msc_unicode.c \
21+
../apache2/msc_util.c \
22+
../apache2/msc_xml.c \
23+
../apache2/persist_dbm.c \
24+
../apache2/re_actions.c \
25+
../apache2/re.c \
26+
../apache2/re_operators.c \
27+
../apache2/re_tfns.c \
28+
../apache2/re_variables.c \
29+
../standalone/regex.c \
30+
../standalone/server.c
3131

3232
msc_test_CFLAGS = @APR_CFLAGS@ \
3333
@APU_CFLAGS@ \

0 commit comments

Comments
 (0)