summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot2006-06-15 22:35:06 -0500
committerroot2006-06-15 22:35:06 -0500
commit0b513bdadb10cdfd0469826c26182335ec44ea56 (patch)
tree29660cb468ac336e96dab5e3a4362571e0012a67
parentaf7991841cb49c439ef53ce4ce111052cfd1c44d (diff)
printer/gnulpr/: 2006/06/15 sync stable from p4
-rw-r--r--printer/gnulpr/HISTORY4
-rwxr-xr-xprinter/gnulpr/PRE_BUILD6
2 files changed, 7 insertions, 3 deletions
diff --git a/printer/gnulpr/HISTORY b/printer/gnulpr/HISTORY
index 1f895fc241..d121cfc5fe 100644
--- a/printer/gnulpr/HISTORY
+++ b/printer/gnulpr/HISTORY
@@ -1,3 +1,7 @@
+2006-04-28 Arwed v. Merkatz <v.merkatz@gmx.net>
+ * PRE_BUILD: replaced 'gaze depends' call with
+ fast_up_depends, bug #10661
+
2004-11-22 Eric Sandall <eric@sandall.us>
* PRE_BUILD: Changed `exit` to `return 1` (Bug #7649)
diff --git a/printer/gnulpr/PRE_BUILD b/printer/gnulpr/PRE_BUILD
index 759d89c663..6ce72b3fd3 100755
--- a/printer/gnulpr/PRE_BUILD
+++ b/printer/gnulpr/PRE_BUILD
@@ -2,11 +2,11 @@ if [ "`gaze installed | grep cups | cut -d: -f1`" = "cups" ]; then
echo "This spell conflicts with cups and will cause it and any dependants to be dispelled."
if query "Would you like to see a list of affected spells? " y; then
- gaze depends cups
+ fast_up_depends cups
echo "cups"
if query "Would you like to continue casting? " y; then
- for CASTED_SPELL in `gaze depends cups`; do
+ for CASTED_SPELL in `fast_up_depends cups`; do
if [ "`gaze installed | grep $CASTED_SPELL | cut -d: -f1`" = "$CASTED_SPELL" ]; then
dispel $CASTED_SPELL
fi
@@ -18,7 +18,7 @@ if [ "`gaze installed | grep cups | cut -d: -f1`" = "cups" ]; then
fi
else
if query "Would you like to continue casting? " y; then
- for CASTED_SPELL in `gaze depends cups`; do
+ for CASTED_SPELL in `fast_up_depends cups`; do
if [ "`gaze installed | grep $CASTED_SPELL | cut -d: -f1`" = "$CASTED_SPELL" ]; then
dispel $CASTED_SPELL
fi