Changeset 512f2f5 in freewrt


Ignore:
Timestamp:
Mar 21, 2007, 7:59:09 PM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
0af9d4d
Parents:
b65ac45
Message:

revert to use gmake 3.81 features

dnehring@: gmake 3.81 is delivered with FreeWRT now,
and I'll integrate it _even_ better tonight.

ok wbx@ austriancoder@

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

Location:
mk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mk/buildhlp.mk

    rb65ac45 r512f2f5  
    5757
    5858__use_generic_patch_target:=42
    59 else
    60 ifeq ($(strip ${NO_DISTFILES}),1)
     59else ifeq ($(strip ${NO_DISTFILES}),1)
    6160${WRKDIST}/.extract_done:
    6261        rm -rf ${WRKDIST} ${WRKSRC} ${WRKBUILD}
     
    6968
    7069__use_generic_patch_target:=42
    71 else
    72 ifeq ($(strip ${_IN_PACKAGE}),1)
     70else ifeq ($(strip ${_IN_PACKAGE}),1)
    7371$(warning This package does not use the generic extraction and patch target; it's most likely to fail.)
    74 endif
    75 endif
    7672endif
    7773
  • mk/pkg-bottom.mk

    rb65ac45 r512f2f5  
    4545            --disable-debug \
    4646            ${CONFIGURE_ARGS}
    47 else
    48 ifeq ($(filter-out manual,${CONFIGURE_STYLE}),)
     47else ifeq ($(filter-out manual,${CONFIGURE_STYLE}),)
    4948        env ${CONFIGURE_ENV} ${MAKE} do-configure
    5049else
    5150        @echo "Invalid CONFIGURE_STYLE '${CONFIGURE_STYLE}'" >&2
    5251        @exit 1
    53 endif
    5452endif
    5553        @${MAKE} post-configure
     
    6563        cd ${WRKBUILD} && env ${MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
    6664            ${MAKE_FLAGS} ${ALL_TARGET}
    67 else
    68 ifeq ($(filter-out manual,${BUILD_STYLE}),)
     65else ifeq ($(filter-out manual,${BUILD_STYLE}),)
    6966        env ${MAKE_ENV} ${MAKE} do-build
    7067else
    7168        @echo "Invalid BUILD_STYLE '${BUILD_STYLE}'" >&2
    7269        @exit 1
    73 endif
    7470endif
    7571        @env ${MAKE_ENV} ${MAKE} post-build
     
    8884        cd ${WRKBUILD} && env ${MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
    8985            DESTDIR='${WRKINST}' ${FAKE_FLAGS} ${INSTALL_TARGET}
    90 else
    91 ifeq ($(filter-out manual,${INSTALL_STYLE}),)
     86else ifeq ($(filter-out manual,${INSTALL_STYLE}),)
    9287        env ${MAKE_ENV} ${MAKE} do-install
    9388else
    9489        @echo "Invalid INSTALL_STYLE '${INSTALL_STYLE}'" >&2
    9590        @exit 1
    96 endif
    9791endif
    9892        @env ${MAKE_ENV} ${MAKE} post-install
  • mk/uname.mk

    rb65ac45 r512f2f5  
    77ifeq ($(strip ${FWRT_LINUX_2_4_BRCM}),y)
    88UNAME_R:=               2.4.34
    9 else
    10 ifeq ($(strip ${FWRT_LINUX_2_6_BRCM}),y)
     9else ifeq ($(strip ${FWRT_LINUX_2_6_BRCM}),y)
    1110UNAME_R:=               2.6.19.1
    12 else
    13 ifeq ($(strip ${FWRT_LINUX_2_4_RB}),y)
     11else ifeq ($(strip ${FWRT_LINUX_2_4_RB}),y)
    1412UNAME_R:=               2.4.34
    15 else
    16 ifeq ($(strip ${FWRT_LINUX_2_6_RB}),y)
     13else ifeq ($(strip ${FWRT_LINUX_2_6_RB}),y)
    1714UNAME_R:=               2.6.19.1
    18 else
    19 ifeq ($(strip ${FWRT_LINUX_2_6_X86}),y)
     15else ifeq ($(strip ${FWRT_LINUX_2_6_X86}),y)
    2016UNAME_R:=               2.6.19.1
    2117else
    2218$(error Cannot determine target "uname -r" output)
    2319endif
    24 endif
    25 endif
    26 endif
    27 endif
    2820
    2921ifeq ($(strip ${FWRT_mipsel}),y)
    3022UNAME_M:=               mips
    31 else
    32 ifeq ($(strip ${FWRT_i386}),y)
     23else ifeq ($(strip ${FWRT_i386}),y)
    3324UNAME_M:=               i386
    3425else
    3526$(error Cannot determine target "uname -m" output)
    3627endif
    37 endif
Note: See TracChangeset for help on using the changeset viewer.