Rejigger botcho brancho.
diff --git a/libdwfl/=ideas b/libdwfl/=ideas
deleted file mode 100644
index bdce325..0000000
--- a/libdwfl/=ideas
+++ /dev/null
@@ -1,16 +0,0 @@
-* dev+ino+mtime hash table, global
-** share fd; if !isrel, share Elf*,Ebl*,Dwarf*
-
-* find_debuginfo
-  When local search fails, try "yum install-debugfor elf-file".
-  i.e., yum install `rpm -qf elffile --qf '%{SOURCERPM} %{V}-%{R} %{ARCH}\n' | awk '{ print substr($1, 1, length($1)-length("-" $2 ".src.rpm")) "-debuginfo-" $2 "." $3 }' `
-  done in rpm-python inside yum(?)
-** all yum ops should have a -qf mode, means `rpm -qf --qf %{name}.%{arch}`
-   plus debug-of modifier to name.arch or -qf *
-
-* libdw_findcu reads all cu hdrs from beginning
-** good for dwarf_offdie: find cu containing that offset
-** bad for dwarf_addrdie: reads in whole debuginfo file
-** when from aranges (dwarf_addrdie), could read cuhdr offset directly w/o scan
-*** aranges really store cu header offset, but libdw adds in header size to
-    get cu die offset; but libdw_findcu interning should start with header
diff --git a/libdwfl/=oops b/libdwfl/=oops
deleted file mode 100644
index bba65b0..0000000
--- a/libdwfl/=oops
+++ /dev/null
Binary files differ
diff --git a/src/addr2line.c b/src/addr2line.c
index e2ea4b4..1229ce4 100644
--- a/src/addr2line.c
+++ b/src/addr2line.c
@@ -64,7 +64,7 @@
   { NULL, 0, NULL, 0, N_("Output Selection:"), 0 },
   { "basenames", 's', NULL, 0, N_("Show only base names of source files"), 0 },
   { "absolute", 'A', NULL, 0,
-    N_("Show absolute directory names of source files"), 0 },
+    N_("Show absolute file names using compilation directory"), 0 },
   { "functions", 'f', NULL, 0, N_("Also show function names"), 0 },
 
   { NULL, 0, NULL, 0, N_("Miscellaneous:"), 0 },
diff --git a/tests/Makefile.am b/tests/Makefile.am
index b608a2b..0ceef1b 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -57,8 +57,7 @@
 		  show-die-info get-files get-lines get-pubnames \
 		  get-aranges allfcts line2addr addrscopes funcscopes \
 		  show-abbrev hash newscn ecp dwflmodtest \
-		  find-prologues funcretval allregs rdwrmmap \
-		  countcu
+		  find-prologues funcretval allregs rdwrmmap
 # get-ciefde
 asm_TESTS = asm-tst1 asm-tst2 asm-tst3 asm-tst4 asm-tst5 \
 	    asm-tst6 asm-tst7 asm-tst8 asm-tst9
@@ -184,7 +183,6 @@
 funcscopes_LDADD = $(libdw) $(libmudflap)
 funcretval_LDADD = $(libdw) $(libmudflap)
 allregs_LDADD = $(libdw) $(libmudflap)
-countcu_LDADD = $(libdw) $(libmudflap)
 find_prologues_LDADD = $(libdw) $(libmudflap)
 #show_ciefde_LDADD = ../libdwarf/libdwarf.so $(libelf) $(libmudflap)
 asm_tst1_LDADD = $(libasm) $(libebl) $(libelf) $(libmudflap) -ldl