]> git.donarmstrong.com Git - debhelper.git/commitdiff
remove -B from examples for now
authorJoey Hess <joey@gnu.kitenet.net>
Thu, 19 Feb 2009 23:40:59 +0000 (18:40 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Thu, 19 Feb 2009 23:40:59 +0000 (18:40 -0500)
There is some concern that passing -B to make may violate debian policy.
<eyeroll>

debian/rules
dh
examples/rules.tiny

index 23b782b156bf237a3f0d1296b1865cd583364b73..faeac03f63d8edb515fbeecb7c6e58dd67ff0b03 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/make -Bf
+#!/usr/bin/make -f
 # If you're looking for an example debian/rules that uses debhelper, see
 # the examples directory.
 # 
diff --git a/dh b/dh
index 35d851baf276c08c922cf04808dd14f8ed789c22..efb3b51b6cb9d78d961838db49524c2781ce6149 100755 (executable)
--- 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
 
index 2d6c9877a511097d9fbd2d5ccba319dca72e175e..cbe925d7587131c8ec8761915930894c60c096fd 100755 (executable)
@@ -1,3 +1,3 @@
-#!/usr/bin/make -Bf
+#!/usr/bin/make -f
 %:
        dh $@