changed debian/source/format to native
This commit is contained in:
parent
9e3fddbad4
commit
4d4471f185
|
@ -1,57 +0,0 @@
|
|||
From: Anibal Monsalve Salazar <anibal@debian.org>
|
||||
Date: Sat, 14 May 2022 02:52:23 +0800
|
||||
Subject: diff
|
||||
|
||||
Only in /data/openKylin/source-repack/data2/sensible-utils/upstream/sensible-utils-0.0.12/man/po4a: sensible-utils.pot
|
||||
Only in /data/openKylin/source-repack/data2/sensible-utils/upstream/sensible-utils-0.0.12: select-editor
|
||||
Only in /data/openKylin/source-repack/data2/sensible-utils/upstream/sensible-utils-0.0.12/man/po4a: sensible-utils.pot
|
||||
Only in /data/openKylin/source-repack/data2/sensible-utils/upstream/sensible-utils-0.0.12: select-editor
|
||||
---
|
||||
sensible-browser | 2 +-
|
||||
sensible-editor | 6 +++---
|
||||
sensible-pager | 2 +-
|
||||
3 files changed, 5 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/sensible-browser b/sensible-browser
|
||||
index f27a55e..d1556a5 100755
|
||||
--- a/sensible-browser
|
||||
+++ b/sensible-browser
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
# Prevent recursive loops, where these values are set to this script
|
||||
p="$(which sensible-browser)"
|
||||
-[ "$(which $BROWSER || true)" = "$p" ] && BROWSER=
|
||||
+[ -n "$BROWSER" ] && [ "$(which $BROWSER || true)" = "$p" ] && BROWSER=
|
||||
|
||||
if test -n "$BROWSER"; then
|
||||
${BROWSER} "$@"
|
||||
diff --git a/sensible-editor b/sensible-editor
|
||||
index 030a7bf..c84add8 100755
|
||||
--- a/sensible-editor
|
||||
+++ b/sensible-editor
|
||||
@@ -4,9 +4,9 @@ ret="$?"
|
||||
|
||||
# Prevent recursive loops, where these values are set to this script
|
||||
p="$(which sensible-editor)"
|
||||
-[ "$(which $EDITOR || true)" = "$p" ] && EDITOR=
|
||||
-[ "$(which $VISUAL || true)" = "$p" ] && VISUAL=
|
||||
-[ "$(which $SELECTED_EDITOR || true)" = "$p" ] && SELECTED_EDITOR=
|
||||
+[ -n "$EDITOR" ] && [ "$(which $EDITOR || true)" = "$p" ] && EDITOR=
|
||||
+[ -n "$EDITOR" ] && [ "$(which $VISUAL || true)" = "$p" ] && VISUAL=
|
||||
+[ -n "$EDITOR" ] && [ "$(which $SELECTED_EDITOR || true)" = "$p" ] && SELECTED_EDITOR=
|
||||
|
||||
if [ -n "$VISUAL" ]; then
|
||||
${VISUAL} "$@"
|
||||
diff --git a/sensible-pager b/sensible-pager
|
||||
index 086f136..6352ea4 100755
|
||||
--- a/sensible-pager
|
||||
+++ b/sensible-pager
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
# Prevent recursive loops, where these values are set to this script
|
||||
p="$(which sensible-pager)"
|
||||
-[ "$(which $PAGER || true)" = "$p" ] && PAGER=
|
||||
+[ -n "$PAGER" ] && [ "$(which $PAGER || true)" = "$p" ] && PAGER=
|
||||
|
||||
${PAGER:-pager} "$@"
|
||||
ret="$?"
|
|
@ -1 +0,0 @@
|
|||
diff.patch
|
|
@ -1 +1 @@
|
|||
3.0 (quilt)
|
||||
3.0 (native)
|
||||
|
|
Loading…
Reference in New Issue