[gnu.bash.bug] newversion.aux is missing ./ in bash 1.03 Makefile

jkp@SAUNA.HUT.FI (Jyrki Kuoppala) (09/02/89)

Bash 1.03, the Makefile is missing ./ in newversion.aux so it won't
work if you don't have . in your path.

Replace:

.build:         newversion.aux  .make $(SOURCES)
        if newversion.aux -build; then mv -f newversion.h version.h; fi

by

.build:         newversion.aux  .make $(SOURCES)
        if ./newversion.aux -build; then mv -f newversion.h version.h; fi

Thanks,

//Jyrki