diff options
author | Bjørn Forsman <bjorn.forsman@gmail.com> | 2018-02-18 18:47:42 +0100 |
---|---|---|
committer | Bjørn Forsman <bjorn.forsman@gmail.com> | 2018-02-18 18:47:42 +0100 |
commit | 9fa6119f142669e389cc5c1685942e999dbf3353 (patch) | |
tree | 093db680deef028f73f8c2243ec490db9c119510 /autogen.sh | |
parent | be38c3d90e143b2998e41c3b9880405d1733b3b9 (diff) |
autogen.sh: break overlong sed line
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index b6c256bda..9e46d4b64 100755 --- a/autogen.sh +++ b/autogen.sh @@ -33,6 +33,12 @@ if test -z $AUTORECONF; then exit fi -cat configure.seed | sed "s/@NDPI_MAJOR@/$NDPI_MAJOR/g" | sed "s/@NDPI_MINOR@/$NDPI_MINOR/g" | sed "s/@NDPI_PATCH@/$NDPI_PATCH/g" | sed "s/@NDPI_VERSION_SHORT@/$NDPI_VERSION_SHORT/g" > configure.ac +cat configure.seed | sed \ + -e "s/@NDPI_MAJOR@/$NDPI_MAJOR/g" \ + -e "s/@NDPI_MINOR@/$NDPI_MINOR/g" \ + -e "s/@NDPI_PATCH@/$NDPI_PATCH/g" \ + -e "s/@NDPI_VERSION_SHORT@/$NDPI_VERSION_SHORT/g" \ + > configure.ac + autoreconf -ivf ./configure $* |