Unverified Commit 4d2ec4c4 by Christian Brauner Committed by GitHub

Merge pull request #2731 from rst0git/master

autotools: fix lxc-{create,copy} build
parents 7b9e8654 04fe0512
...@@ -42,6 +42,7 @@ noinst_HEADERS = api_extensions.h \ ...@@ -42,6 +42,7 @@ noinst_HEADERS = api_extensions.h \
terminal.h \ terminal.h \
../tests/lxctest.h \ ../tests/lxctest.h \
tools/arguments.h \ tools/arguments.h \
storage/storage_utils.h \
utils.h utils.h
if IS_BIONIC if IS_BIONIC
...@@ -323,7 +324,8 @@ lxc_monitor_SOURCES = tools/lxc_monitor.c \ ...@@ -323,7 +324,8 @@ lxc_monitor_SOURCES = tools/lxc_monitor.c \
lxc_ls_SOURCES = tools/lxc_ls.c \ lxc_ls_SOURCES = tools/lxc_ls.c \
tools/arguments.c tools/arguments.h tools/arguments.c tools/arguments.h
lxc_copy_SOURCES = tools/lxc_copy.c \ lxc_copy_SOURCES = tools/lxc_copy.c \
tools/arguments.c tools/arguments.h tools/arguments.c tools/arguments.h \
storage/storage_utils.c storage/storage_utils.h
lxc_start_SOURCES = tools/lxc_start.c \ lxc_start_SOURCES = tools/lxc_start.c \
tools/arguments.c tools/arguments.h tools/arguments.c tools/arguments.h
lxc_stop_SOURCES = tools/lxc_stop.c \ lxc_stop_SOURCES = tools/lxc_stop.c \
...@@ -337,7 +339,8 @@ lxc_unshare_SOURCES = tools/lxc_unshare.c \ ...@@ -337,7 +339,8 @@ lxc_unshare_SOURCES = tools/lxc_unshare.c \
lxc_wait_SOURCES = tools/lxc_wait.c \ lxc_wait_SOURCES = tools/lxc_wait.c \
tools/arguments.c tools/arguments.h tools/arguments.c tools/arguments.h
lxc_create_SOURCES = tools/lxc_create.c \ lxc_create_SOURCES = tools/lxc_create.c \
tools/arguments.c tools/arguments.h tools/arguments.c tools/arguments.h \
storage/storage_utils.c storage/storage_utils.h
lxc_snapshot_SOURCES = tools/lxc_snapshot.c \ lxc_snapshot_SOURCES = tools/lxc_snapshot.c \
tools/arguments.c tools/arguments.h tools/arguments.c tools/arguments.h
lxc_checkpoint_SOURCES = tools/lxc_checkpoint.c \ lxc_checkpoint_SOURCES = tools/lxc_checkpoint.c \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment