'make uninstall' should remove the 'plugin' directory only if it's empty. Also, this patch adds .gitignore file.
Signed-off-by: Pavel Borzenkov <[email protected]> --- .gitignore | 4 ++++ Makefile | 2 +- 2 files changed, 5 insertions(+), 1 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e1043a9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.o +*~ +.depend +djvu.so diff --git a/Makefile b/Makefile index a79d8ca..d6eac10 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ install: all uninstall: @echo uninstalling ${PLUGIN} plugin @rm -f ${DESTDIR}${PREFIX}/lib/zathura/${PLUGIN}.so - @rm -rf ${DESTDIR}${PREFIX}/lib/zathura + @rmdir ${DESTDIR}${PREFIX}/lib/zathura 2> /dev/null || /bin/true -include $(wildcard .depend/*.dep) -- 1.7.0.4 _______________________________________________ zathura mailing list [email protected] http://lists.pwmt.org/mailman/listinfo/zathura
