Release: 1.2.5RC1
Environment
AIX
Description
po directory Makefile.in is wrong for the mkinstalldirs. It is correct in head. The logic adds two lots of ../ to the front of scripting. The change I applied took it back to what head is.
mkinstalldirs = $(SHELL) "$(MKINSTALLDIRS)"
#mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)
" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
How To Repeat
make install bug
Fix
Unknown