summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordann frazier <dann.frazier@canonical.com>2019-05-06 13:33:20 -0600
committerdann frazier <dann.frazier@canonical.com>2019-05-06 13:33:20 -0600
commit99990d2175d6e5bccf6cd7c35fdba61461e985f7 (patch)
tree2e0241b19bd432a4e50d9cd0f4edd50cf5a09583
parentcdceb0fb38a5e4a0617986127e2520a8f49cebbd (diff)
downloadefi-boot-shim-99990d2175d6e5bccf6cd7c35fdba61461e985f7.tar.gz
efi-boot-shim-99990d2175d6e5bccf6cd7c35fdba61461e985f7.zip
Use $@ instead of referencing ${DBX_LIST} in multiple places
-rwxr-xr-xdebian/rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules
index ba63dfb7..d898d7aa 100755
--- a/debian/rules
+++ b/debian/rules
@@ -47,10 +47,10 @@ $(DBX_LIST):
if [ -f ${DBX_HASHES} ]; then \
set -e; \
for HASH in $$(grep -E [[:xdigit:]]{32} ${DBX_HASHES}); do \
- efisiglist -o ${DBX_LIST} -a -h $$HASH; \
+ efisiglist -o $@ -a -h $$HASH; \
done; \
else \
- touch ${DBX_LIST}; \
+ touch $@; \
fi
%: