diff options
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/pci-resource/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/pci-resource/Makefile b/mdk-stage1/pci-resource/Makefile index 4e1e8e3dc..046ab29dd 100644 --- a/mdk-stage1/pci-resource/Makefile +++ b/mdk-stage1/pci-resource/Makefile @@ -19,7 +19,7 @@ all: pci-ids.h pci-ids.h: /usr/share/ldetect-lst/pcitable update-pci-ids.pl - perl update-pci-ids.pl > $@ || rm -f $@ && exit 1 + perl update-pci-ids.pl > $@ || { rm -f $@; exit 1; } clean: rm -f pci-ids.h |