diff options
author | Fabio Porcedda <fabio.porcedda@gmail.com> | 2014-10-22 18:20:10 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-10-25 01:31:32 +0200 |
commit | 1586ce3a3d427419bb83e6065f3536bfc36cdb13 (patch) | |
tree | d3ad7bde9866d1971fdf62ce8d5691696bfd91e1 /package/netcat-openbsd | |
parent | bcb835b042d385bac801e00cff2f1dbacff93629 (diff) |
apply-patches.sh: Use the "APPLY_PATCHES" variable to call the script
To easy up adding optional parameters when calling the
"apply-patches.sh" add and use the "APPLY_PATCHES" variable to execute
the script.
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/netcat-openbsd')
-rw-r--r-- | package/netcat-openbsd/netcat-openbsd.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/netcat-openbsd/netcat-openbsd.mk b/package/netcat-openbsd/netcat-openbsd.mk index 64fb7f083..bf5c4b741 100644 --- a/package/netcat-openbsd/netcat-openbsd.mk +++ b/package/netcat-openbsd/netcat-openbsd.mk @@ -18,7 +18,7 @@ endif define NETCAT_OPENBSD_APPLY_DEBIAN_PATCHES if [ -d $(@D)/debian/patches ]; then \ - support/scripts/apply-patches.sh $(@D) $(@D)/debian/patches *.dpatch; \ + $(APPLY_PATCHES) $(@D) $(@D)/debian/patches *.dpatch; \ fi endef |