diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-01-25 12:25:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-01-25 12:25:00 +0000 |
commit | b0f787b35bcf3d9a909ab280e6507b35d153b95f (patch) | |
tree | 3f5813f75e420b333ae85371fe56657242e28a3c /mdk-stage1/pci-resource | |
parent | b579b95c6def1b88b78ad6e9c731ebe071a95ea1 (diff) | |
download | drakx-backup-do-not-use-b0f787b35bcf3d9a909ab280e6507b35d153b95f.tar drakx-backup-do-not-use-b0f787b35bcf3d9a909ab280e6507b35d153b95f.tar.gz drakx-backup-do-not-use-b0f787b35bcf3d9a909ab280e6507b35d153b95f.tar.bz2 drakx-backup-do-not-use-b0f787b35bcf3d9a909ab280e6507b35d153b95f.tar.xz drakx-backup-do-not-use-b0f787b35bcf3d9a909ab280e6507b35d153b95f.zip |
ensure errors propagate
Diffstat (limited to 'mdk-stage1/pci-resource')
-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 8627ab03c..4e1e8e3dc 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 $@ + perl update-pci-ids.pl > $@ || rm -f $@ && exit 1 clean: rm -f pci-ids.h |