those processed here), will apply to all
binary packages the program acts on, not just
the first
+--init-script DH_INIT_SCRIPT will be set to a string, which specifies an
+ init script name (probably only
+ dh_installinit will ever use this)
Any additional command line parameters that do not start with "-" will be
ignored, and you can access them later just as you normally would ($1, $2,
+debhelper (0.71) unstable; urgency=low
+
+ * dh_makeshlibs: -V flag was broken: if just -V was specified,
+ dh_makeshlibs would die. Corrected this.
+ * dh_lib: removed warning if the arguments passed to a debhelper command
+ do not apply to the main package. It's been long enough so I'm 100% sure
+ no packages use the old behavior.
+
+ -- Joey Hess <joeyh@master.debian.org> Mon, 9 Mar 1998 11:46:59 -0800
+
debhelper (0.70) unstable; urgency=low
* dh_lib: autoscript(): no longer add the modification date to the
"all" => \$all,
"no-act" => \$no_act,
+
+ "init-script=s" => \$init_script,
);
# Check to see if -V was specified. If so, but no parameters were passed,
DH_V_FLAG='$version_info'
DH_V_FLAG_SET='$version_info_set'
DH_PARAMS_ALL='$all'
+DH_INIT_SCRIPT='$init_script'
DH_PARSE_ERROR='$parse_error'
set -- @ARGV
};
echo `basename $0`" warning: \"$PACKAGE\" has no final -d, but -d was specified."
script=$PACKAGE
fi
+ elif [ "$DH_INIT_SCRIPT" != "" ]; then
+ script=$DH_INIT_SCRIPT
else
script=$PACKAGE
fi