summaryrefslogtreecommitdiff
path: root/dh
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-02-19 18:40:59 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-02-27 15:14:03 -0500
commita352c47d79ffa29ce2ab38eeebb1ab7babae6393 (patch)
treee40f36554575d72ae550e5f9d07fb5bf231a9c1c /dh
parent607c7aa2926606786747cee611012fd9602d15d9 (diff)
remove -B from examples for now
There is some concern that passing -B to make may violate debian policy. <eyeroll> (cherry picked from commit 09090c86ea099008990bc5a9a14e1ac35bb1e584)
Diffstat (limited to 'dh')
-rwxr-xr-xdh10
1 files changed, 5 insertions, 5 deletions
diff --git a/dh b/dh
index bc5cf565..611e2322 100755
--- a/dh
+++ b/dh
@@ -140,14 +140,14 @@ anything:
This is a very simple rules file, for packages where the default sequences of
commands work with no additional options.
- #!/usr/bin/make -Bf
+ #!/usr/bin/make -f
%:
dh $@
Often you'll want to pass an option to a specific debhelper command. The
easy way to do with is by adding an override target for that command.
- #!/usr/bin/make -Bf
+ #!/usr/bin/make -f
%:
dh $@
@@ -161,7 +161,7 @@ Sometimes the automated dh_auto_configure and dh_auto_build can't guess
what to do for a strange package. Here's how to avoid running either
and instead run your own commands.
- #!/usr/bin/make -Bf
+ #!/usr/bin/make -f
%:
dh $@
@@ -174,7 +174,7 @@ and instead run your own commands.
Another common case is wanting to do something manually before or
after a particular debhelper command is run.
- #!/usr/bin/make -Bf
+ #!/usr/bin/make -f
%:
dh $@
@@ -185,7 +185,7 @@ after a particular debhelper command is run.
If your package is a python package, dh will use dh_pysupport by
default. This is how to use dh_pycentral instead.
- #!/usr/bin/make -Bf
+ #!/usr/bin/make -f
%:
dh --with python-central