diff options
author | Thomas Osterried <thomas@osterried.de> | 2006-10-04 11:50:48 +0000 |
---|---|---|
committer | Thomas Osterried <thomas@osterried.de> | 2006-10-04 11:50:48 +0000 |
commit | 98d4df9d1fc314c6f17a8a0700cbe074da801dbb (patch) | |
tree | 3d19d46f912738003bd9467b1ae2ff017918dcfe | |
parent | 6dc845d03ef3da35bd28ceae8e0985a1fb701a2f (diff) |
fix: /var/ax25/ax25rtd/ was not created with "make installconf"
-rw-r--r-- | ax25rtd/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ax25rtd/Makefile.in b/ax25rtd/Makefile.in index 03e2946..f32afd9 100644 --- a/ax25rtd/Makefile.in +++ b/ax25rtd/Makefile.in @@ -413,6 +413,11 @@ installconf: echo " $(INSTALL_DATA) $$p $(DESTDIR)$(AX25_SYSCONFDIR)/$$p"; \ $(INSTALL_DATA) $$p $(DESTDIR)$(AX25_SYSCONFDIR)/$$p; \ done + $(mkinstalldirs) $(DESTDIR)$(AX25_LOCALSTATEDIR)/ax25rtd + @list='$(varfiles)'; for p in $$list; do \ + echo " $(INSTALL_DATA) $$p $(DESTDIR)$(AX25_LOCALSTATEDIR)/ax25rtd/$$p"; \ + $(INSTALL_DATA) $$p $(DESTDIR)$(AX25_LOCALSTATEDIR)/ax25rtd/$$p; \ + done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |