diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-15 01:48:15 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-15 01:48:15 -0400 |
commit | 17b593aacd4e8d056f2be860a7b744004892ecbd (patch) | |
tree | e7e47f9fdbc1ccc00f6fa7eaba2ff608e8adf7a9 | |
parent | 5caf817f3d48ea67893cd0b2e9c91f2f323a5356 (diff) |
fix
-rwxr-xr-x | tools/notsd-move | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/notsd-move b/tools/notsd-move index 5a907109bd..2f6ad3f1b0 100755 --- a/tools/notsd-move +++ b/tools/notsd-move @@ -742,12 +742,12 @@ breakup_makefile() ( fixup_makefile() { sed -r \ -e '#### Specific complete strings #####' \ - -e 's|\$\(CPP\)·\$\(CFLAGS\)·\$\(AM_CPPFLAGS\)·\$\(CPPFLAGS\)·|$(CPP) $(sd.ALL_CPPFLAGS) |g' \ + -e 's|\$\(CPP\) \$\(CFLAGS\) \$\(AM_CPPFLAGS\) \$\(CPPFLAGS\)|$(CPP) $(sd.ALL_CPPFLAGS)|g' \ -e '/^ \$\(AM_V_at\)\$\(MKDIR_P\) \$\(dir \$@\)/d' \ -e '#### General cases #################' \ -e '/^[^# ]*:/ { s|^(\s*)\S+/|\1$(outdir)/| }' \ -e 's|^if (.*)|ifneq ($(\1),)|' \ - -e '/\bAM_(C|CPP|LD)FLAGS\b/d' \ + -e '/^\s*\$\(AM_(C|CPP|LD)FLAGS\b/d' \ -e 's|--version-script=.*/([^/]+)\.sym|--version-script=$(srcdir)/\1.sym|g' } |