]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
Makefile: dash does not like {} expansion
authorHarald Hoyer <harald@redhat.com>
Thu, 5 Jan 2012 13:48:57 +0000 (14:48 +0100)
committerHarald Hoyer <harald@redhat.com>
Thu, 5 Jan 2012 13:48:57 +0000 (14:48 +0100)
removed {} expansion for mandir mkdir for users, which have dash as
/bin/sh

Makefile

index ccabd1e4f7b7650e96c913bf4b37fd19f200b31d..e331c5f2c2b37cab7c39f976f394d1a7bf23424d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ install: doc
        mkdir -p $(DESTDIR)$(bindir)
        mkdir -p $(DESTDIR)$(sysconfdir)
        mkdir -p $(DESTDIR)$(pkglibdir)/modules.d
-       mkdir -p $(DESTDIR)$(mandir)/man{5,7,8}
+       mkdir -p $(DESTDIR)$(mandir)/man5 $(DESTDIR)$(mandir)/man7 $(DESTDIR)$(mandir)/man8
        install -m 0755 dracut $(DESTDIR)$(bindir)/dracut
        install -m 0755 dracut-gencmdline $(DESTDIR)$(bindir)/dracut-gencmdline
        install -m 0755 dracut-catimages $(DESTDIR)$(bindir)/dracut-catimages