diff options
-rw-r--r-- | default_user/ChangeLog | 4 | ||||
-rw-r--r-- | default_user/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/default_user/ChangeLog b/default_user/ChangeLog index 917a5a5827..69427ff050 100644 --- a/default_user/ChangeLog +++ b/default_user/ChangeLog @@ -1,5 +1,9 @@ 2000-07-12 Chris Toshok <toshok@helixcode.com> + (install-data-hook): ignore error on mkdir. + +2000-07-12 Chris Toshok <toshok@helixcode.com> + * Makefile.am (install-data-hook): create an empty news directory in $(defaultdir). diff --git a/default_user/Makefile.am b/default_user/Makefile.am index 1a0734ffd5..2cff4d1435 100644 --- a/default_user/Makefile.am +++ b/default_user/Makefile.am @@ -6,4 +6,4 @@ default_DATA = ldapservers.xml shortcuts.xml EXTRA_DIST = $(default_DATA) install-data-hook: - mkdir $(defaultdir)/news + -mkdir $(defaultdir)/news |