diff options
-rw-r--r-- | Makefile.am | 13 | ||||
-rw-r--r-- | uccsconfigure-session-wrapper.c | 7 |
2 files changed, 20 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index e8cec00..1325ca5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,6 +41,19 @@ EXTRA_DIST += uccsconfigure-session.in CLEANFILES += uccsconfigure-session ############################### +# The session wrapper +############################### + +pkglibexec_PROGRAMS = \ + uccsconfigure-session-wrapper + +uccsconfigure_session_wrapper_SOURCES = \ + uccsconfigure-session-wrapper.c +uccsconfigure_session_wrapper_CFLAGS = \ + -DPKGDATADIR="\"$(pkgdatadir)\"" \ + -Wall -Werror + +############################### # Apparmor for session script ############################### diff --git a/uccsconfigure-session-wrapper.c b/uccsconfigure-session-wrapper.c new file mode 100644 index 0000000..8a4ade3 --- /dev/null +++ b/uccsconfigure-session-wrapper.c @@ -0,0 +1,7 @@ + +int +main (int argc, char * argv[]) +{ + + return 0; +} |