Changeset 7c09b21


Ignore:
Timestamp:
May 26, 2009, 4:03:50 PM (15 years ago)
Author:
Anders Kaseorg <andersk@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
30ac47f
Parents:
7bf51d5
git-author:
Anders Kaseorg <andersk@mit.edu> (05/05/09 15:08:46)
git-committer:
Anders Kaseorg <andersk@mit.edu> (05/26/09 16:03:50)
Message:
configure.ac: Replace echo with AC_MSG_NOTICE.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    rb5fe6d2 r7c09b21  
    9494dnl Add CFLAGS for embeded perl
    9595FOO=`perl -MExtUtils::Embed -e ccopts`
    96 echo Adding perl CFLAGS ${FOO}
     96AC_MSG_NOTICE([Adding perl CFLAGS ${FOO}])
    9797CFLAGS=${CFLAGS}\ ${FOO}
    9898
     
    114114dnl Add LDFLAGS for embedded perl
    115115FOO=`perl -MExtUtils::Embed -e ldopts`
    116 echo Adding perl LDFLAGS ${FOO}
     116AC_MSG_NOTICE([Adding perl LDFLAGS ${FOO}])
    117117LDFLAGS=${LDFLAGS}\ ${FOO}
    118118
     
    120120PKG_CHECK_MODULES(GLIB,glib-2.0)
    121121
    122 echo Adding glib-2.0 CFLAGS ${GLIB_CFLAGS}
     122AC_MSG_NOTICE([Adding glib-2.0 CFLAGS ${GLIB_CFLAGS}])
    123123CFLAGS="${GLIB_CFLAGS} ${CFLAGS}"
    124 echo Adding glib-2.0 LDFLAGS ${GLIB_LIBS}
     124AC_MSG_NOTICE([Adding glib-2.0 LDFLAGS ${GLIB_LIBS}])
    125125LDFLAGS="${GLIB_LIBS} ${LDFLAGS}"
    126126
Note: See TracChangeset for help on using the changeset viewer.