diff options
| author | Teddy Wing | 2021-08-24 20:08:00 +0200 |
|---|---|---|
| committer | Teddy Wing | 2021-08-24 20:08:00 +0200 |
| commit | b4ab3e4b5ed6346a0a05dc0c43bf9bcb5e892e1d (patch) | |
| tree | 8ef499b08f40de6bdbf7eda1c218b59a976d42bf | |
| parent | 1072cc0c7e92b28abfb23f7d878b97f30be29522 (diff) | |
| download | readline-incdec-b4ab3e4b5ed6346a0a05dc0c43bf9bcb5e892e1d.tar.bz2 | |
Makefile: Swap m4 arguments
Put the file after the option argument since it's more common to order
them that way.
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ all: incdec incdec: incdec.m4.bash incdec.pl - m4 $< --define="INCLUDE_INCDEC_PL=include(\`incdec.pl')dnl" > $@ + m4 --define="INCLUDE_INCDEC_PL=include(\`incdec.pl')dnl" $< > $@ incdec.pl: incdec.pl.m4 incdec.pm sed -n '/sub incdec {/,/^}/p' incdec.pm > incdec.sub.pl |
