diff options
author | P. J. McDermott <pjm@nac.net> | 2012-06-27 01:22:54 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-06-27 01:22:54 (EDT) |
commit | b44c3a8f980f594963e9d2288753d7f91b2adf8f (patch) | |
tree | bc5c4894f7fc4ab5d2daad3a71195c1bba7ed5b3 /specs | |
parent | 6ead5b717b2ba0c8a28e34fd0504d9db99e3f96e (diff) |
Fix GNU Automake targets in example build.in.
Diffstat (limited to 'specs')
-rw-r--r-- | specs/source-package-format-2.0.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/specs/source-package-format-2.0.txt b/specs/source-package-format-2.0.txt index de29985..2078f78 100644 --- a/specs/source-package-format-2.0.txt +++ b/specs/source-package-format-2.0.txt @@ -541,13 +541,12 @@ Following is an example `build.in` file: touch $@ install-arch.stamp: build.stamp - cd src && make DESTDIR=$${PWD}/../dest install + cd src && make DESTDIR=$${PWD}/../dest install-exec rm -Rf dest/usr/include dest/usr/share/man touch $@ install-indep.stamp: build.stamp - cd src && make DESTDIR=$${PWD}/../dest install-data-am - cd src && make DESTDIR=$${PWD}/../dest install-man + cd src && make DESTDIR=$${PWD}/../dest install-data touch $@ binary-arch: install-arch.stamp |