diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-05-29 03:01:16 -0300 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-05-29 03:01:16 -0300 |
commit | d61a193bc8cdf55fbb1d8640ced4aafec5ab4ee4 (patch) | |
tree | e2abe57ff3356aa09a166fe4c2531bfe15278bf0 /libre-testing/sh-roundup/makefile-fix.patch | |
parent | 9c502dcd730eff7ffaeb851a5cfe4f04c51bb5aa (diff) | |
parent | 6b2c8aa7b11e2d30b8ed5353b7f135f3fdd94c2f (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre-testing/sh-roundup/makefile-fix.patch')
-rw-r--r-- | libre-testing/sh-roundup/makefile-fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libre-testing/sh-roundup/makefile-fix.patch b/libre-testing/sh-roundup/makefile-fix.patch new file mode 100644 index 000000000..b97bebf23 --- /dev/null +++ b/libre-testing/sh-roundup/makefile-fix.patch @@ -0,0 +1,11 @@ +--- Makefile.orig ++++ Makefile +@@ -79,7 +79,7 @@ + chmod 0755 $(bindir)/roundup + + install-man: man +- -for i in {1..9} ; do cp *.$$i $(mandir)/man$$i 2>/dev/null ; done ++ shopt -s nullglob; for file in *.{1..9}; do install -Dm644 $$file $(mandir)/man$${file##*.}/$${file##*/}; done + + .PHONY: pages + pages : doc |