diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-02-07 15:50:13 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-02-07 15:50:13 -0500 |
commit | 10fb0bc3d86fb48f7bf7b608f208cd3f6e4ca3a8 (patch) | |
tree | c1b2ffd5f2be817bdb5a1f3b10d4d9d4bd17cdec /Makefile.am | |
parent | 59beee018dead1f4221cf6ce0ee856eb5dd055d1 (diff) |
Tiny Makefile fix for sed style/compatibility
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index ecb84ca0..81436cea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,8 +29,8 @@ src/urweb.cm: src/prefix.cm src/sources src/urweb.mlb: src/prefix.mlb src/sources src/suffix.mlb cat src/prefix.mlb src/sources src/suffix.mlb \ - | sed 's/^\(.*\).grm$$/\1.mlton.grm.sig:\1.mlton.grm.sml/; y/:/\n/' \ - | sed 's/^\(.*\).lex$$/\1.mlton.lex.sml/' \ + | sed -e 's/^\(.*\).grm$$/\1.mlton.grm.sig:\1.mlton.grm.sml/' -e 'y/:/\n/' \ + -e 's/^\(.*\).lex$$/\1.mlton.lex.sml/' \ >$@ src/urweb.mlton.lex: src/urweb.lex |