From: Bdale Garbee Date: Tue, 7 Sep 2010 16:41:58 +0000 (-0600) Subject: try using explicit path to resolve ambiguous use of '..' in make targets X-Git-Tag: debian/1.7.4p4-1~6 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=3a88062a08ea96239ba2564bb4e50be74397f95f;p=debian%2Fsudo try using explicit path to resolve ambiguous use of '..' in make targets --- diff --git a/debian/rules b/debian/rules index 1ece390..41ea1fd 100755 --- a/debian/rules +++ b/debian/rules @@ -16,7 +16,7 @@ configure-stamp: # simple version mkdir -p build-simple - cd build-simple && NROFFPROG=/usr/bin/nroff ../configure \ + cd build-simple && NROFFPROG=/usr/bin/nroff $(CURDIR)/configure \ --prefix=/usr -v \ --with-all-insults \ --with-devel \ @@ -39,7 +39,7 @@ configure-stamp: # LDAP version mkdir -p build-ldap - cd build-ldap && NROFFPROG=/usr/bin/nroff ../configure \ + cd build-ldap && NROFFPROG=/usr/bin/nroff $(CURDIR)/configure \ --prefix=/usr -v \ --with-all-insults \ --with-devel \