diff --git a/src/utils/aLinkCreator/docs/Makefile.am b/src/utils/aLinkCreator/docs/Makefile.am
index 4b37933..d97d654 100644
--- a/src/utils/aLinkCreator/docs/Makefile.am
+++ b/src/utils/aLinkCreator/docs/Makefile.am
@@ -26,8 +26,9 @@ install-data-hook:
 			tmp=`echo $$file | sed -e "s/\.1/\.$$lang\.1/"` ; \
 			if test -f $(srcdir)/$$tmp; then name=$(srcdir)/$$tmp; \
 			else name=$$tmp; fi; \
-			echo " $(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$file" ; \
-			$(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$file ; \
+			inst=`echo $$file | sed -e "s/\.1//" -e '$(transform)'`.1 ; \
+			echo " $(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$inst" ; \
+			$(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$inst ; \
 		done ; \
 	done
 
@@ -35,9 +36,9 @@ uninstall-hook:
 	@for lang in $(man_langs); do \
 		list='$(dist_man_MANS)' ; \
 		for file in $$list; do \
-			name=`echo $$file | sed -e "s/\.1/\.$$lang\.1/"` ; \
-			echo " rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$file" ; \
-			rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$file ; \
+			inst=`echo $$file | sed -e "s/\.1//" -e '$(transform)'`.1 ; \
+			echo " rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$inst" ; \
+			rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$inst ; \
 		done ; \
 	done
 
diff --git a/src/utils/cas/docs/Makefile.am b/src/utils/cas/docs/Makefile.am
index f47c8be..8c21566 100644
--- a/src/utils/cas/docs/Makefile.am
+++ b/src/utils/cas/docs/Makefile.am
@@ -13,8 +13,9 @@ install-data-hook:
 			tmp=`echo $$file | sed -e "s/\.1/\.$$lang\.1/"` ; \
 			if test -f $(srcdir)/$$tmp; then name=$(srcdir)/$$tmp; \
 			else name=$$tmp; fi; \
-			echo " $(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$file" ; \
-			$(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$file ; \
+			inst=`echo $$file | sed -e "s/\.1//" -e '$(transform)'`.1 ; \
+			echo " $(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$inst" ; \
+			$(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$inst ; \
 		done ; \
 	done
 
@@ -22,9 +23,9 @@ uninstall-hook:
 	@for lang in $(man_langs); do \
 		list='$(dist_man_MANS)' ; \
 		for file in $$list; do \
-			name=`echo $$file | sed -e "s/\.1/\.$$lang\.1/"` ; \
-			echo " rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$file" ; \
-			rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$file ; \
+			inst=`echo $$file | sed -e "s/\.1//" -e '$(transform)'`.1 ; \
+			echo " rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$inst" ; \
+			rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$inst ; \
 		done ; \
 	done
 
diff --git a/src/utils/wxCas/docs/Makefile.am b/src/utils/wxCas/docs/Makefile.am
index 093531c..d023002 100644
--- a/src/utils/wxCas/docs/Makefile.am
+++ b/src/utils/wxCas/docs/Makefile.am
@@ -13,8 +13,9 @@ install-data-hook:
 			tmp=`echo $$file | sed -e "s/\.1/\.$$lang\.1/"` ; \
 			if test -f $(srcdir)/$$tmp; then name=$(srcdir)/$$tmp; \
 			else name=$$tmp; fi; \
-			echo " $(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$file" ; \
-			$(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$file ; \
+			inst=`echo $$file | sed -e "s/\.1//" -e '$(transform)'`.1 ; \
+			echo " $(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$inst" ; \
+			$(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$inst ; \
 		done ; \
 	done
 
@@ -22,9 +23,9 @@ uninstall-hook:
 	@for lang in $(man_langs); do \
 		list='$(dist_man_MANS)' ; \
 		for file in $$list; do \
-			name=`echo $$file | sed -e "s/\.1/\.$$lang\.1/"` ; \
-			echo " rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$file" ; \
-			rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$file ; \
+			inst=`echo $$file | sed -e "s/\.1//" -e '$(transform)'`.1 ; \
+			echo " rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$inst" ; \
+			rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$inst ; \
 		done ; \
 	done
 
diff --git a/src/utils/xas/docs/Makefile.am b/src/utils/xas/docs/Makefile.am
index 45ac272..16f16b6 100644
--- a/src/utils/xas/docs/Makefile.am
+++ b/src/utils/xas/docs/Makefile.am
@@ -13,8 +13,9 @@ install-data-hook:
 			tmp=`echo $$file | sed -e "s/\.1/\.$$lang\.1/"` ; \
 			if test -f $(srcdir)/$$tmp; then name=$(srcdir)/$$tmp; \
 			else name=$$tmp; fi; \
-			echo " $(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$file" ; \
-			$(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$file ; \
+			inst=`echo $$file | sed -e "s/\.1//" -e '$(transform)'`.1 ; \
+			echo " $(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$inst" ; \
+			$(INSTALL_DATA) $$name $(DESTDIR)$(mandir)/$$lang/man1/$$inst ; \
 		done ; \
 	done
 
@@ -22,9 +23,9 @@ uninstall-hook:
 	@for lang in $(man_langs); do \
 		list='$(dist_man_MANS)' ; \
 		for file in $$list; do \
-			name=`echo $$file | sed -e "s/\.1/\.$$lang\.1/"` ; \
-			echo " rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$file" ; \
-			rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$file ; \
+			inst=`echo $$file | sed -e "s/\.1//" -e '$(transform)'`.1 ; \
+			echo " rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$inst" ; \
+			rm -f $(DESTDIR)$(mandir)/$$lang/man1/$$inst ; \
 		done ; \
 	done
 
