diff options
author | P. J. McDermott <pjm@nac.net> | 2012-01-31 03:32:38 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-01-31 03:32:38 (EST) |
commit | 17d8b4d09987106b6f9daf4f994ef2f9cbdf2b0d (patch) | |
tree | 9bb5cebc8884cf7aecee1493bb1787f7d33718fc /Makefile.in | |
parent | 904aee35a85b6d22cc77f9dcae259e00b7fb1275 (diff) |
Fix build system destination directory handling.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index fbd5211..ee9a703 100644 --- a/Makefile.in +++ b/Makefile.in @@ -63,7 +63,7 @@ install: all else \ destdir=/; \ fi; \ - mkdir -p '$${destdir}'; \ + mkdir -p "$${destdir}"; \ echo "DESTDIR=$$(cd "$${destdir}" && pwd)" > install.config @printf 'Installing executable files...\n' @cd src && $(MAKE) $$(cat ../install.config) install |