Changeset bee3901 in freewrt


Ignore:
Timestamp:
Dec 18, 2006, 11:03:12 PM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
b4313c2
Parents:
358fc4de
Message:

to be consistent, configure build and install style default to manual,
and build and install have to be set to 'auto' for the automatisms

git-svn-id: svn://www.freewrt.org/branches/common-adk@1336 afb5a338-a214-0410-bd46-81f09a774fd1

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mk/pkg-bottom.mk

    r358fc4de rbee3901  
    4747${_BUILD_COOKIE}: ${_CONFIGURE_COOKIE}
    4848        @${MAKE} pre-build
    49 ifeq (${BUILD_STYLE},manual)
     49ifeq (${BUILD_STYLE},auto)
     50        cd ${WRKBUILD} && ${MAKE} -f ${MAKE_FILE} ${ALL_TARGET}
     51else ifeq ($(filter-out manual,${BUILD_STYLE}),)
    5052        ${MAKE} do-build
    51 else ifeq ($(filter-out auto,${BUILD_STYLE}),)
    52         cd ${WRKBUILD} && ${MAKE} -f ${MAKE_FILE} ${ALL_TARGET}
    5353else
    5454        @echo "Invalid BUILD_STYLE '${BUILD_STYLE}'" >&2
  • package/mksh/Makefile

    r358fc4de rbee3901  
    2424                        -D_FILE_OFFSET_BITS=64 -DNEED_COMPAT
    2525
    26 BUILD_STYLE=            manual
    27 
    2826do-build:
    2927        cd ${WRKBUILD} && CC='${TARGET_CC}' CFLAGS='${TARGET_CFLAGS}' \
  • package/openntpd/Makefile

    r358fc4de rbee3901  
    2626                        --with-privsep-user=ntp \
    2727                        --with-adjtimex
     28BUILD_STYLE=            auto
    2829
    2930do-install:
  • package/openvpn/Makefile

    r358fc4de rbee3901  
    6767                        $(ENABLE_PASSWORD_SAVE) \
    6868                        $(ENABLE_SMALL)
     69BUILD_STYLE=            auto
    6970INSTALL_STYLE=          auto
    7071
Note: See TracChangeset for help on using the changeset viewer.