diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2001-01-11 22:25:19 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2001-01-11 22:25:19 +0000 |
commit | 88487d6b67d4714d4bc63ca59a5ec7449b0bc219 (patch) | |
tree | 914696674910abe71a8477890b5679390c8bbeeb /debian/rules | |
parent | 1c9f0a5afa9c6eb6af95106c382d441eadaa0949 (diff) |
2001-01-09 Marcus Brinkmann <marcus@gnu.org>
* changelog: Update to reflect Debian upgrade.
* rules: Use --disable-profile wih configure instead no_prof=t
with make.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 53af91a9..a1efd14e 100755 --- a/debian/rules +++ b/debian/rules @@ -62,14 +62,15 @@ config: stamp-config stamp-config: configure $(checkdir) -mkdir build - cd build && ../configure --build=$(DEB_BUILD_GNU_TYPE) \ + cd build && ../configure --disable-profile \ + --build=$(DEB_BUILD_GNU_TYPE) \ --host=$(DEB_HOST_GNU_TYPE) --prefix= touch stamp-config all build: config stamp-build stamp-build: $(checkdir) - cd build && $(MAKE) no_prof=t + cd build && $(MAKE) # XXX-doc cd build && $(MAKE) -C doc hurd.info cd build && $(MAKE) -C doc hurd.ps |