diff options
author | Shiz <hi@shiz.me> | 2015-06-20 04:10:22 +0200 |
---|---|---|
committer | Shiz <hi@shiz.me> | 2015-06-20 04:10:22 +0200 |
commit | 43c916b6dc5441c273bbefd789f8944f2d8c8070 (patch) | |
tree | 1d4cfd6bb2914dd9dc2661cfb4c2948554726883 /fixincludes/configure | |
parent | c7841dcdbda13b4afb5b9ac7b1ab220b0da54db3 (diff) | |
download | cbb-gcc-4.6.4-43c916b6dc5441c273bbefd789f8944f2d8c8070.tar.bz2 cbb-gcc-4.6.4-43c916b6dc5441c273bbefd789f8944f2d8c8070.tar.xz |
fix portability issues in build system
This fixes numerous issues where the CBB build system used non-portable
constructs. See COPYING.MIDIPIX (9cd0746c) for copyright information.
Signed-off-by: Shiz <hi@shiz.me>
Diffstat (limited to 'fixincludes/configure')
-rw-r--r-- | fixincludes/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixincludes/configure b/fixincludes/configure index 197f4488c..ac3591026 100644 --- a/fixincludes/configure +++ b/fixincludes/configure @@ -3,5 +3,5 @@ src_dir=$(dirname $0) cp $src_dir/Makefile.in Makefile # update makefile -sed -i -e 's#@src_dir@#'$src_dir'#g' Makefile +sed -e 's#@src_dir@#'$src_dir'#g' Makefile > Makefile.tmp && mv Makefile.tmp Makefile |