mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 04:49:54 +08:00
gprofng: build documentation only if BUILD_MAN is true
gprofng/ChangeLog 2022-09-16 Vladimir Mezentsev <vladimir.mezentsev@oracle.com> PR gprofng/29476 * gprofng/Makefile.am: Build documentation only if BUILD_MAN is true * gprofng/Makefile.in: Rebuild. * gprofng/configure: Rebuild.
This commit is contained in:
@ -23,11 +23,14 @@ AUTOMAKE_OPTIONS = dejagnu foreign
|
|||||||
if BUILD_COLLECTOR
|
if BUILD_COLLECTOR
|
||||||
COLLECTOR_SUBDIRS = libcollector
|
COLLECTOR_SUBDIRS = libcollector
|
||||||
endif
|
endif
|
||||||
|
if BUILD_MAN
|
||||||
|
DOC_SUBDIR = doc
|
||||||
|
endif
|
||||||
if BUILD_SRC
|
if BUILD_SRC
|
||||||
SRC_SUBDIRS = src gp-display-html doc
|
SRC_SUBDIRS = src gp-display-html $(DOC_SUBDIR)
|
||||||
endif
|
endif
|
||||||
SUBDIRS = $(COLLECTOR_SUBDIRS) $(SRC_SUBDIRS)
|
SUBDIRS = $(COLLECTOR_SUBDIRS) $(SRC_SUBDIRS)
|
||||||
DIST_SUBDIRS = libcollector src gp-display-html doc
|
DIST_SUBDIRS = libcollector src gp-display-html $(DOC_SUBDIR)
|
||||||
|
|
||||||
# Setup the testing framework, if you have one
|
# Setup the testing framework, if you have one
|
||||||
EXPECT = expect
|
EXPECT = expect
|
||||||
|
@ -381,9 +381,10 @@ zlibinc = @zlibinc@
|
|||||||
ACLOCAL_AMFLAGS = -I . -I ..
|
ACLOCAL_AMFLAGS = -I . -I ..
|
||||||
AUTOMAKE_OPTIONS = dejagnu foreign
|
AUTOMAKE_OPTIONS = dejagnu foreign
|
||||||
@BUILD_COLLECTOR_TRUE@COLLECTOR_SUBDIRS = libcollector
|
@BUILD_COLLECTOR_TRUE@COLLECTOR_SUBDIRS = libcollector
|
||||||
@BUILD_SRC_TRUE@SRC_SUBDIRS = src gp-display-html doc
|
@BUILD_MAN_TRUE@DOC_SUBDIR = doc
|
||||||
|
@BUILD_SRC_TRUE@SRC_SUBDIRS = src gp-display-html $(DOC_SUBDIR)
|
||||||
SUBDIRS = $(COLLECTOR_SUBDIRS) $(SRC_SUBDIRS)
|
SUBDIRS = $(COLLECTOR_SUBDIRS) $(SRC_SUBDIRS)
|
||||||
DIST_SUBDIRS = libcollector src gp-display-html doc
|
DIST_SUBDIRS = libcollector src gp-display-html $(DOC_SUBDIR)
|
||||||
RUNTEST = runtest
|
RUNTEST = runtest
|
||||||
RUNTESTFLAGS =
|
RUNTESTFLAGS =
|
||||||
BASEDIR = $(srcdir)/..
|
BASEDIR = $(srcdir)/..
|
||||||
|
1
gprofng/configure
vendored
1
gprofng/configure
vendored
@ -16628,7 +16628,6 @@ LIBC=gnu
|
|||||||
EOF
|
EOF
|
||||||
cc_set_libc=`$CC -E "dummy.c" 2>/dev/null | grep '^LIBC=' | sed 's, ,,g'`
|
cc_set_libc=`$CC -E "dummy.c" 2>/dev/null | grep '^LIBC=' | sed 's, ,,g'`
|
||||||
eval "$cc_set_libc"
|
eval "$cc_set_libc"
|
||||||
echo "cc_set_libc=$cc_set_libc;"
|
|
||||||
if test "$LIBC" = musl; then
|
if test "$LIBC" = musl; then
|
||||||
|
|
||||||
$as_echo "#define __MUSL_LIBC 1" >>confdefs.h
|
$as_echo "#define __MUSL_LIBC 1" >>confdefs.h
|
||||||
|
Reference in New Issue
Block a user