summaryrefslogtreecommitdiff
path: root/doc/PROGRAMMING
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-08-06 11:08:45 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-08-06 11:08:45 -0400
commit4433049e1c444db9536be2141431d98b0ea438e4 (patch)
tree9c23f69145a393c9f66ca473fc3f2f2fa6be01e3 /doc/PROGRAMMING
parent7b1e681929b2ff7881dd130c22889dcab184a80e (diff)
dh: Allow creation of new sequences (such as to handle a patch target for quilt), by adding an add_command function to the sequence addon interface. See #540124.
Diffstat (limited to 'doc/PROGRAMMING')
-rw-r--r--doc/PROGRAMMING7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/PROGRAMMING b/doc/PROGRAMMING
index 4e7ea463..c3530f26 100644
--- a/doc/PROGRAMMING
+++ b/doc/PROGRAMMING
@@ -263,7 +263,12 @@ insert_after($existing_command, $new_command)
Insert $new_command in sequences after $existing_command
remove_command($existing_command)
- Remove $existing_command from the list of commands to run.
+ Remove $existing_command from the list of commands to run
+ in all sequences.
+
+add_command($sequence, $new_command)
+ Add $new_command to the beginning of the specified sequence.
+ If the sequence does not exist, it will be created.
Buildsystem Classes:
-------------------