diff options
| author | Martin Owens <doctormo@gmail.com> | 2014-03-04 05:04:13 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2014-03-04 05:04:13 +0000 |
| commit | d497fa1cd22483246eb7fd1036af82b372946813 (patch) | |
| tree | e22a70c8f1c979693e35daf97aad70cfcc983011 | |
| parent | Remove dom from configure.ac (diff) | |
| download | inkscape-d497fa1cd22483246eb7fd1036af82b372946813.tar.gz inkscape-d497fa1cd22483246eb7fd1036af82b372946813.zip | |
Use srcdir instead of datadir for sourcing wildcards
(bzr r13110)
| -rw-r--r-- | share/extensions/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/Makefile.am b/share/extensions/Makefile.am index 02486290b..2c1e23954 100644 --- a/share/extensions/Makefile.am +++ b/share/extensions/Makefile.am @@ -13,7 +13,7 @@ otherstuffdir = $(datadir)/inkscape/extensions moduledir = $(datadir)/inkscape/extensions -extension_SCRIPTS = $(wildcard $(extensiondir)/*.py) +extension_SCRIPTS = $(wildcard $(srcdir)/*.py) otherstuff_DATA = \ fontfix.conf \ @@ -28,7 +28,7 @@ otherstuff_DATA = \ svg2xaml.xsl \ xaml2svg.xsl -module_DATA = $(wildcard $(moduledir)/*.inx) +module_DATA = $(wildcard $(srcdir)/*.inx) EXTRA_DIST = \ $(extension_SCRIPTS) $(otherstuff_DATA) $(module_DATA) |
