SHA256
1
0
forked from pool/quilt
OBS User unknown 2008-11-03 13:19:35 +00:00 committed by Git OBS Bridge
parent 6540857427
commit e9f85ca432
3 changed files with 11 additions and 2 deletions

View File

@ -20,7 +20,7 @@ Signed-off-by: Bernhard Walle <bwalle@suse.de>
fi
+# check if formail is installed before doing anything
+if ! which formail &> /dev/null
+if ! type formail &> /dev/null
+then
+ echo "You have to install 'formail' to use 'quilt mail'" >&2
+ exit 1

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Oct 28 13:33:44 CET 2008 - bwalle@suse.de
- Use 'type' instead of 'which' in last change to avoid dependency
of 'which' package.
-------------------------------------------------------------------
Mon Oct 27 22:36:14 CET 2008 - bwalle@suse.de

View File

@ -24,7 +24,7 @@ Summary: A Tool for Working with Many Patches
License: GPL v2 or later
Group: Productivity/Text/Utilities
Version: 0.47
Release: 12
Release: 13
Requires: coreutils diffutils patch gzip bzip2 perl mktemp diffstat
Recommends: procmail
AutoReqProv: off
@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT
%doc doc/quilt.pdf
%changelog
* Tue Oct 28 2008 bwalle@suse.de
- Use 'type' instead of 'which' in last change to avoid dependency
of 'which' package.
* Mon Oct 27 2008 bwalle@suse.de
- Only recommend 'procmail' (contains the 'formail' binary) instead
of requiring it. It's only needed for the 'mail' command.