1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #!/bin/sh
- #
- # Copyright (C) 2016 Matthew R. Wette
- #
- # Copying and distribution of this file, with or without modification,
- # are permitted in any medium without royalty provided the copyright
- # notice and this notice are preserved. This file is offered as-is,
- # without any warranty.
- # fix configure
- if [ ! -f ../configure-orig ]; then
- cp ../configure ../configure-orig
- fi
- ed ../configure <<'EndOfInput'
- /^cat >confcache
- i
- ac_config_files="$ac_config_files cputil/Makefile cputil/tests/Makefile"
- ac_config_files="$ac_config_files cputil/mindist"
- .
- w
- q
- EndOfInput
- # fix Makefile.in
- if [ ! -f ../Makefile.in-orig ]; then
- cp ../Makefile.in ../Makefile.in-orig
- fi
- ed ../Makefile.in <<'EndOfInput'
- /TOOLS =
- / none
- i
- cputil \
- .
- w
- q
- EndOfInput
- # fix Makefile.am
- if [ ! -f ../Makefile.am-orig ]; then
- cp ../Makefile.am ../Makefile.am-orig
- fi
- ed ../Makefile.am <<'EndOfInput'
- /TOOLS =
- / none
- i
- cputil \
- .
- w
- q
- EndOfInput
- # fix configure.ac
- if [ ! -f ../configure.ac-orig ]; then
- cp ../configure.ac ../configure.ac-orig
- fi
- ed ../configure.ac <<'EndOfInput'
- /AC_CONFIG_FILES(
- / none\/Makefile
- i
- cputil/Makefile
- cputil/tests/Makefile
- .
- w
- q
- EndOfInput
- # --- last line ---
|