Changeset 716478c in freewrt


Ignore:
Timestamp:
Jun 7, 2007, 10:42:58 PM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
4a3c2cc
Parents:
ce78eb6
Message:

fix the worst errors:

  • -D* is CPPFLAGS, not CFLAGS
  • add to the flags, not to where the flags are used, because they're used in more places than just there
  • use single quotes, not double quotes, unless the shell is supposed to expand them

git-svn-id: svn://www.freewrt.org/trunk/freewrt@2732 afb5a338-a214-0410-bd46-81f09a774fd1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/netio/Makefile

    rce78eb6 r716478c  
    2020
    2121BUILD_STYLE:=           auto
    22 MAKE_FLAGS+=            CC="${TARGET_CC}" \
    23                         CFLAGS="${TCFLAGS} -DUNIX" \
    24                         CPPFLAGS="${TCPPFLAGS}" \
    25                         LDFLAGS="${TLDFLAGS}" \
     22TCPPFLAGS+=             -DUNIX
     23MAKE_FLAGS+=            CC='${TARGET_CC}' \
     24                        CFLAGS='${TCFLAGS}' \
     25                        CPPFLAGS='${TCPPFLAGS}' \
     26                        LDFLAGS='${TLDFLAGS}' \
    2627                        O=.o X= LIBS="-lpthread" OUT=-o
    2728
Note: See TracChangeset for help on using the changeset viewer.