diff options
author | Michael Banck <mbanck@debian.org> | 2008-09-21 12:45:59 +0000 |
---|---|---|
committer | Michael Banck <mbanck@debian.org> | 2008-09-21 12:45:59 +0000 |
commit | a15daaf164b2e495141d1212011bfda47fea126f (patch) | |
tree | 4245c3c91aff74abfbb922526d52ea43ed3f5a91 | |
parent | b1b20c0e6f9b20ca00ce9d9b9149859f9c0beddc (diff) |
+ debian/rules (build/hurd): Replace build-tree with $(DEB_SRCDIR).
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index c43d3bf6..33c2feb8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,7 @@ hurd (20080921-1) UNRELEASED; urgency=low + debian/rules (simple-patchsys.mk) Replaced with ... + debian/rules (patchsys-quilt.mk) ... this. + debian/patches/series: New file. + + debian/rules (build/hurd): Replace build-tree with $(DEB_SRCDIR). * debian/hurd.postinst: Install w and ps alternatives links in /bin, not /usr/bin. diff --git a/debian/rules b/debian/rules index b9f6c41e..6a9e878e 100755 --- a/debian/rules +++ b/debian/rules @@ -35,7 +35,7 @@ build/hurd:: cd $(DEB_BUILDDIR)/doc && texi2html -split chapter ../../doc/hurd.texi # assemble all ChangeLogs to one big file - cd build-tree; for i in `find hurd/ -name "ChangeLog"`; do echo $$i:; cat $$i; echo; done > $(CURDIR)/debian/ChangeLog + cd $(DEB_SRCDIR); for i in `find hurd/ -name "ChangeLog"`; do echo $$i:; cat $$i; echo; done > $(CURDIR)/debian/ChangeLog install/hurd:: # runsystem is managed by update-alternatives |