converted GNUmakerules.sh to a perl script to avoid shell
incompatibilities.
This commit is contained in:
parent
61124dd1c6
commit
1419d9dbc3
|
@ -48,8 +48,8 @@ endif
|
||||||
|
|
||||||
GNUmakevars: GNUmakevars.sh
|
GNUmakevars: GNUmakevars.sh
|
||||||
sh ./$^ > $@
|
sh ./$^ > $@
|
||||||
GNUmakerules: GNUmakerules.sh
|
GNUmakerules: GNUmakerules.pl
|
||||||
sh ./$^ > $@
|
perl ./$^ > $@
|
||||||
|
|
||||||
|
|
||||||
include GNUmakerules
|
include GNUmakerules
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
print "\$(BINDIR)/%: %\n";
|
||||||
|
print "\tcp \$^ \$@\n";
|
||||||
|
print "\$(MAN1DIR)/%: %\n";
|
||||||
|
print "\tcp \$^ \$@\n";
|
Loading…
Reference in New Issue