diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2014-07-23 11:57:31 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2014-07-23 11:57:47 -0400 |
commit | fd5667b42c253da9c4c5502f53b5c0fb7e0f589e (patch) | |
tree | 3a096e27e3657969445b23c3973ccd540da46527 /conf.d | |
parent | 107b44f50b6818288ad70608fbe4ec3fd1a7119f (diff) |
Symlinks fix for DESTDIR
From:
https://github.com/Alexpux/MINGW-packages/blob/master/mingw-w64-fontconfig/fontconfig-2.11.0-symlinks-fix.patch
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.d/Makefile.am b/conf.d/Makefile.am index d61756b8..2b2c85f9 100644 --- a/conf.d/Makefile.am +++ b/conf.d/Makefile.am @@ -88,9 +88,9 @@ install-data-hook: @(echo cd $(DESTDIR)$(configdir); \ cd $(DESTDIR)$(configdir); \ for i in $(CONF_LINKS); do \ - echo $(RM) $$i";" ln -s $(templatedir)/$$i .; \ + echo $(RM) $$i";" ln -s $(DESTDIR)$(templatedir)/$$i .;\ $(RM) $$i; \ - ln -s $(templatedir)/$$i .; \ + ln -s $(DESTDIR)$(templatedir)/$$i .; \ done) uninstall-local: @(echo cd $(DESTDIR)$(configdir); \ |