Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 32105

Show
Ignore:
Timestamp:
2007-12-16 17:17:00 (11 months ago)
Author:
jmpp@…
Message:

Pass the generated static cregistry.a archive through ranlib to fix it for universal building,
which is enforced by the MacPorts portfile on Tiger or newer.

This patch will be applied manaully while building the dmg's, since the alternative is merging it
now into the release branch and hence invalidating all the work I've done so far in the release process
(release tag, tarballs, selfupdate, etc...)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/base/src/cregistry/Makefile

    r27967 r32105  
    11# $Id$ 
    2 OBJS=       registry.o entry.o sql.o 
    3 STLIB_NAME=     cregistry.a 
     2OBJS = registry.o entry.o sql.o 
     3STLIB_NAME = cregistry.a 
     4RANLIB = ranlib 
     5 
    46 
    57include ../../Mk/macports.autoconf.mk 
     8 
    69 
    710all:: ${STLIB_NAME} 
     
    1215${STLIB_NAME}:: ${OBJS} 
    1316        ${STLIB_LD} ${STLIB_NAME} ${OBJS} 
     17        ${RANLIB} ${STLIB_NAME} 
    1418 
    1519clean::