summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-03 16:20:10 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-03 16:20:10 (EDT)
commitb0ff0ab9cd3197c31f39eb835207acff187bbcf5 (patch)
tree3467fe132c771fbcd22efc4dea3f7de41f8b98f1
parent565b7bcf24baf9a3f818b2f68038f8144eb91170 (diff)
Improve package descriptions
-rw-r--r--gdb-common.pkg/control2
-rw-r--r--gdb-doc.pkg/control2
-rw-r--r--gdb.pkg/control2
-rw-r--r--gdbserver.pkg/control2
-rw-r--r--substvars5
5 files changed, 8 insertions, 5 deletions
diff --git a/gdb-common.pkg/control b/gdb-common.pkg/control
index 4af9d98..d8a2e8e 100644
--- a/gdb-common.pkg/control
+++ b/gdb-common.pkg/control
@@ -1,6 +1,6 @@
Architecture: all
Platform: all
-Description: GNU Project debugger - common files
+Description: GNU source-level debugger - common files
${Common-Description}
.
This package provides source package documentation files for GDB.
diff --git a/gdb-doc.pkg/control b/gdb-doc.pkg/control
index 9c8c485..bc9908f 100644
--- a/gdb-doc.pkg/control
+++ b/gdb-doc.pkg/control
@@ -1,7 +1,7 @@
Architecture: any
Platform: all
Depends: gdb-common (= ${Source-Version})
-Description: GNU Project debugger - documentation
+Description: GNU source-level debugger - documentation
${Common-Description}
.
This package provides documentation for GDB.
diff --git a/gdb.pkg/control b/gdb.pkg/control
index 803f209..fe666b0 100644
--- a/gdb.pkg/control
+++ b/gdb.pkg/control
@@ -6,5 +6,5 @@ Depends: gdb-common (= ${Source-Version}),
libtinfo.5,
libz.1,
libexpat.1,
-Description: GNU Project debugger
+Description: GNU source-level debugger
${Common-Description}
diff --git a/gdbserver.pkg/control b/gdbserver.pkg/control
index 3b310a4..4a918f7 100644
--- a/gdbserver.pkg/control
+++ b/gdbserver.pkg/control
@@ -1,7 +1,7 @@
Architecture: any
Platform: all
Depends: gdb-common (= ${Source-Version})
-Description: GNU Project remote debugging server
+Description: Remote server for the GNU source-level debugger
${Common-Description}
.
This package provides gdbserver, a control program for remote debugging.
diff --git a/substvars b/substvars
index 16f21cc..af0a334 100644
--- a/substvars
+++ b/substvars
@@ -1,5 +1,5 @@
Common-Description:
- GDB, the GNU Project debugger, allows you to see what is going on `inside'
+ GDB, the GNU Project debugger, allows you to see what is going on "inside"
another program while it executes -- or what another program was doing at the
moment it crashed.
.
@@ -11,3 +11,6 @@ Common-Description:
* Examine what has happened, when your program has stopped.
* Change things in your program, so you can experiment with correcting the
effects of one bug and go on to learn about another.
+ .
+ Those programs might be executing on the same machine as GDB (native), on
+ another machine (remote), or on a simulator.