Folks,


I have the following structure in my source package

  foo/
  |__ doc/
  |   |__ bar.html
  |   |
  |   |__ img/
  |       |__ baz.png
  |
  |__ Makefile.am

My current rule (in the top-level `Makefile.am`) is

  nobase_dist_doc_DATA = doc/bar.html \
                         doc/img/baz.png

After `make install` the files are installed in

  /usr/local/share/doc/foo/doc/bar.html
  /usr/local/share/doc/foo/doc/img/baz.png

However, I would like to have them in 

  /usr/local/share/doc/foo/bar.html
  /usr/local/share/doc/foo/img/baz.png

that is, one directory level higher.  How can I achieve this?


    Werner

Reply via email to