~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/pandora-plugin

  • Committer: Brian Aker
  • Date: 2011-02-12 06:56:00 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212065600-m6c68fybw51rflhj
Further strip out includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
 
135
135
noinst_HEADERS=
136
136
nobase_include_HEADERS=
137
 
nobase_pkginclude_HEADERS=
138
137
check_PROGRAMS=
139
138
noinst_LTLIBRARIES=
140
139
bin_PROGRAMS=
144
143
  if plugin['headers'] != "":
145
144
    plugin_file.write("noinst_HEADERS += %(headers)s\n" % plugin)
146
145
  if plugin['install_headers'] != "":
147
 
    plugin_file.write("nobase_pkginclude_HEADERS += %(install_headers)s\n" % plugin)
 
146
    plugin_file.write("nobase_include_HEADERS += %(install_headers)s\n" % plugin)
148
147
  if plugin['testsuite']:
149
148
    if plugin.has_key('testsuitedir') and plugin['testsuitedir'] != "":
150
149
      plugin_file.write("EXTRA_DIST += %(testsuitedir)s\n" % plugin)
534
533
  if plugin['headers'] != "":
535
534
    plugin_am.write("noinst_HEADERS += %(headers)s\n" % plugin)
536
535
  if plugin['install_headers'] != "":
537
 
    plugin_am.write("nobase_pkginclude_HEADERS += %(install_headers)s\n" % plugin)
 
536
    plugin_am.write("nobase_include_HEADERS += %(install_headers)s\n" % plugin)
538
537
  if plugin['testsuite']:
539
538
    if plugin.has_key('testsuitedir') and plugin['testsuitedir'] != "":
540
539
      plugin_am.write("EXTRA_DIST += %(rel_path)s/%(testsuitedir)s\n" % plugin)