Changeset 904 in MondoRescue for trunk/mindi-busybox/libbb/Makefile.in


Ignore:
Timestamp:
Oct 25, 2006, 1:51:57 AM (17 years ago)
Author:
Bruno Cornec
Message:

merge -r890:902 $SVN_M/branches/stable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/mindi-busybox/libbb/Makefile.in

    r821 r904  
    3030    trim.c u_signal_names.c vdprintf.c verror_msg.c \
    3131    vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c xstat.c \
    32     xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c xgetlarg.c \
     32    xgethostbyname.c xgethostbyname2.c xreadlink.c xgetlarg.c \
    3333    bb_xsocket.c bb_xdaemon.c bb_xbind.c bb_xlisten.c bb_xchdir.c \
    3434    get_terminal_width_height.c fclose_nonstdin.c fflush_stdout_and_exit.c \
     
    5151LIBBB-$(CONFIG_DF)+= find_mount_point.c
    5252LIBBB-$(CONFIG_EJECT)+= find_mount_point.c
     53
     54# We shouldn't build xregcomp.c if we don't need it - this ensures we don't
     55# require regex.h to be in the include dir even if we don't need it thereby
     56# allowing us to build busybox even if uclibc regex support is disabled.
     57
     58regex-y:=
     59regex-$(CONFIG_AWK) += xregcomp.c
     60regex-$(CONFIG_SED) += xregcomp.c
     61regex-$(CONFIG_LESS) += xregcomp.c
     62regex-$(CONFIG_DEVFSD) += xregcomp.c
     63regex-$(CONFIG_MDEV) += xregcomp.c
     64regex-$(CONFIG_GREP) += xregcomp.c
     65
     66# Sort has the happy side efect of returning a unique list
     67LIBBB-y += $(sort $(regex-y))
    5368
    5469LIBBB-y:=$(patsubst %,$(srcdir)/%,$(LIBBB-y))
Note: See TracChangeset for help on using the changeset viewer.