diff options
author | Lisandro Damián Nicanor Pérez Meyer <perezmeyer@gmail.com> | 2013-04-07 21:44:49 -0300 |
---|---|---|
committer | Lisandro Damián Nicanor Pérez Meyer <perezmeyer@gmail.com> | 2013-04-07 21:44:49 -0300 |
commit | 841f02037e035ff3f19a389425637e0d078eb953 (patch) | |
tree | aaba4df0ba3452c26e949c59e68d2940d381141e | |
parent | 43b4d2c4d49210e7006e0ea3c24aed2cc295b3fd (diff) | |
download | qtbase-841f02037e035ff3f19a389425637e0d078eb953.tar.gz |
Use variables the proper way.
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 6c89be3..966db66 100755 --- a/debian/rules +++ b/debian/rules @@ -37,9 +37,9 @@ os = $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) # Retrieve packages that have a .install-common file pkgs_with_common = $(patsubst debian/%.install-common,%,$(wildcard debian/*.install-common)) # Retrieve packages that have a .install-$arch file -pkgs_with_arch = $(patsubst debian/%.install-$arch,%,$(wildcard debian/*.install-$arch)) +pkgs_with_arch = $(patsubst debian/%.install-$(arch),%,$(wildcard debian/*.install-$(arch))) # Retrieve packages that have a .install-$os file -pkgs_with_os = $(patsubst debian/%.install-$os,%,$(wildcard debian/*.install-$os)) +pkgs_with_os = $(patsubst debian/%.install-$(os),%,$(wildcard debian/*.install-$(os))) ifneq (,$(filter %-sql-ibase,$(shell dh_listpackages))) |