Skip to content

Commit 96018b5

Browse files
marian-pritsakkcudnik
authored andcommitted
[Makefile.am]: Use full file names (#104)
* [Makefile.am]: Use full file names GNU Automake does not support wildcards, which makes the build fail on some versions of Automake with error "No rule to make target *.lua". Signed-off-by: marian-pritsak <[email protected]> * Reuse EXTRA_DIST variable
1 parent 9347e0e commit 96018b5

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

common/Makefile.am

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ INCLUDES = -I $(top_srcdir)
22

33
lib_LTLIBRARIES = libswsscommon.la
44

5-
EXTRA_DIST = *.lua
5+
EXTRA_DIST = \
6+
consumer_state_table_pops.lua \
7+
consumer_table_pops.lua \
8+
table_dump.lua
69

710
swssdir = $(datadir)/swss
811

9-
dist_swss_DATA = *.lua
12+
dist_swss_DATA = $(EXTRA_DIST)
1013

1114
bin_PROGRAMS = swssloglevel
1215

0 commit comments

Comments
 (0)