diff options
author | Modestas Vainius <modax@debian.org> | 2011-03-30 22:06:05 +0300 |
---|---|---|
committer | Modestas Vainius <modax@debian.org> | 2011-03-30 22:06:05 +0300 |
commit | c5220a3f468d5d789c6254968cbd6eb3d77f87f9 (patch) | |
tree | ae37f00db06a1b9e52eda96a754b64962c192f2d /qt-kde-team/2 | |
parent | c9f28b55aaceecc2ad80f3e678b4d799abda3916 (diff) | |
download | pkg-kde-tools-c5220a3f468d5d789c6254968cbd6eb3d77f87f9.tar.gz |
Rename 'overriden_command' to 'overridden_command'.
Actually, this is spelling correction. However, keep 'overriden_command' as an
alias for now in order not to break many packages which were written for
pkg-kde-tools << 0.12.
Diffstat (limited to 'qt-kde-team/2')
-rw-r--r-- | qt-kde-team/2/dhmk.mk | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/qt-kde-team/2/dhmk.mk b/qt-kde-team/2/dhmk.mk index fd2191c..a24b689 100644 --- a/qt-kde-team/2/dhmk.mk +++ b/qt-kde-team/2/dhmk.mk @@ -37,9 +37,12 @@ set_command_options = $(foreach t,$(filter $(or $3,%),$(dhmk_standard_targets)), # $(call butfirstword,TEXT,DELIMITER) butfirstword = $(patsubst $(firstword $(subst $2, ,$1))$2%,%,$1) -# Use this to retrieve full command line to the overriden command in the +# Use this to retrieve full command line to the overridden command in the # override_% targets -overriden_command = $($(DHMK_TARGET)_$(call butfirstword,$@,_)) $(DHMK_OPTIONS) +overridden_command = $($(DHMK_TARGET)_$(call butfirstword,$@,_)) $(DHMK_OPTIONS) +# Keep $(overriden_command) alias to preserve compatibility with debian/rules which +# were written for pkg-kde-tools << 0.12. +overriden_command = $(overridden_command) # This makefile is not parallel compatible by design (e.g. command chains # below) |