diff options
author | Eric Koegel <eric.koegel@gmail.com> | 2017-07-14 10:01:23 +0300 |
---|---|---|
committer | Eric Koegel <eric.koegel@gmail.com> | 2017-07-15 04:34:43 +0300 |
commit | 7bae6925a92e08d420b7f6f699470734324ed26a (patch) | |
tree | 5d359d7c176957429271b1ad9649de333b6b0e34 | |
parent | 1a2c726ce1fdb0bffeaae70360ad90c20a4a4b23 (diff) | |
download | ConsoleKit2-7bae6925a92e08d420b7f6f699470734324ed26a.tar.gz |
fix: correct introspection prefixes
So the created gir file outputs the libconsolekit into a proper
class.
-rw-r--r-- | libconsolekit/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libconsolekit/Makefile.am b/libconsolekit/Makefile.am index de36a34..d5fe59c 100644 --- a/libconsolekit/Makefile.am +++ b/libconsolekit/Makefile.am @@ -79,8 +79,8 @@ INTROSPECTION_SCANNER_ENV = CC="$(CC)" INTROSPECTION_SCANNER_ARGS = \ --add-include-path=$(srcdir) \ --warn-all \ - --identifier-prefix=LibConsoleKit \ - --symbol-prefix=lib_consolekit + --identifier-prefix=Lib \ + --symbol-prefix=lib_ INTROSPECTION_COMPILER_ARGS = \ --includedir=$(srcdir) \ --includedir=. |