Skip to content

Commit

Permalink
Fix a problem in the Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin Howard committed Mar 30, 2019
1 parent 87c29c7 commit a86cb5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ clean_tests: clean clean_config
@$(RM) -f $(DC_HELP_GCDA) $(DC_HELP_GCNO)

install_locales:
$(LOCALES_INSTALL) $(LOCALEDIR)
$(LOCALES_INSTALL) $(DESTDIR)$(LOCALEDIR)

install_bc_manpage:
$(SAFE_INSTALL) $(MANPAGE_INSTALL_ARGS) $(BC_MANPAGE) $(DESTDIR)$(MAN1DIR)/$(BC_MANPAGE_NAME)
Expand All @@ -285,7 +285,7 @@ install:%%INSTALL_LOCALES_PREREQS%%%%INSTALL_PREREQS%%
$(INSTALL) $(DESTDIR)$(BINDIR) "$(EXEC_SUFFIX)"

uninstall_locales:
$(RM) -fr $(LOCALEDIR)
$(RM) -fr $(DESTDIR)$(LOCALEDIR)

uninstall_bc_manpage:
$(RM) -f $(DESTDIR)$(MAN1DIR)/$(BC_MANPAGE_NAME)
Expand Down

0 comments on commit a86cb5d

Please sign in to comment.