diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-05-22 13:10:40 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-05-22 13:10:40 +0000 |
commit | 85747ad7d18dfc697845a457631f3877fda46906 (patch) | |
tree | d25c889710e6a3e5a4dbfeb1d0f6b4bb6597853d | |
parent | 5f51018de093a26d447de03e1ec6dd0377fc4c77 (diff) |
fix macro
Original commit message from CVS:
fix macro
-rw-r--r-- | m4/as-scrub-include.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/as-scrub-include.m4 b/m4/as-scrub-include.m4 index 1ef251f..95090cc 100644 --- a/m4/as-scrub-include.m4 +++ b/m4/as-scrub-include.m4 @@ -26,7 +26,7 @@ AC_DEFUN([AS_SCRUB_INCLUDE], dnl line INCLUDE_DIRS=`echo $INCLUDE_DIRS | sed -e 's/.*<...> search starts here://' | sed -e 's/End of search list.*//'` for dir in $INCLUDE_DIRS; do - command="sed -e s#-I$dir##" + command="sed -e s#-I$dir ##" GIVEN_CFLAGS=`echo $GIVEN_CFLAGS | $command` done [$1]=$GIVEN_CFLAGS |