summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. 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)
commitb44c3a8f980f594963e9d2288753d7f91b2adf8f (patch)
treebc5c4894f7fc4ab5d2daad3a71195c1bba7ed5b3
parent6ead5b717b2ba0c8a28e34fd0504d9db99e3f96e (diff)
Fix GNU Automake targets in example build.in.
-rw-r--r--specs/source-package-format-2.0.txt5
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