af0d5a9b53
see https://review.gluster.org/#/c/19788/, https://review.gluster.org/#/c/19871/, https://review.gluster.org/#/c/19952/, https://review.gluster.org/#/c/20104/, https://review.gluster.org/#/c/20162/, https://review.gluster.org/#/c/20185/, https://review.gluster.org/#/c/20207/, https://review.gluster.org/#/c/20227/, https://review.gluster.org/#/c/20307/, https://review.gluster.org/#/c/20320/, https://review.gluster.org/#/c/20332/, https://review.gluster.org/#/c/20364/, https://review.gluster.org/#/c/20441/, and https://review.gluster.org/#/c/20484 shebangs changed from /usr/bin/python2 to /usr/bin/python3. (Reminder, various distribution packaging guidelines require use of explicit python version and don't allow '#!/usr/bin/env python', regardless of how handy that idiom may be.) glusterfs.spec(.in) package python{2,3}-gluster and python2 or python3 dependencies as appropriate. configure(.ac): + test for and use python2 or python3 as appropriate. If build machine has python2 and python3, use python3. Override by setting PYTHON=/usr/bin/python2 when running configure. + PYTHONDEV_CPPFLAGS from python[23]-config --includes is a better match to the original python sysconfig.get_python_inc(). All those other extraneous flags breaks the build. + Only change the shebangs once. Changing them over and over again, e.g., during a `make glusterrpms` in extras/LinuxRPM just sends make (is it really make that's looping?) into an infinite loop. If you figure out why, let me know. + Oldest python2 is python2.6 on CentOS 6 and Debian 8 (Jessie). Everything else has 2.7 or 3.x + logic from https://review.gluster.org/c/glusterfs/+/21050, which needs to be removed/merged after that patch is merged. Builds on CentOS 6, CentOS 7, Fedora 28, Fedora rawhide, and the mysterious RHEL > 7. Change-Id: Idae21d3b6f58b32372e1daa0d234e491e563198f updates: #411 Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com>
57 lines
1.8 KiB
Makefile
57 lines
1.8 KiB
Makefile
SOURCES = site.h
|
|
|
|
EXTRA_DIST = autogen.sh \
|
|
COPYING-GPLV2 COPYING-LGPLV3 COMMITMENT \
|
|
INSTALL README.md AUTHORS THANKS NEWS \
|
|
glusterfs.spec glusterfs-api.pc.in libgfchangelog.pc.in libgfdb.pc.in \
|
|
run-tests.sh \
|
|
build-aux/pkg-version \
|
|
contrib/umountd \
|
|
python-shebangs \
|
|
$(shell find $(top_srcdir)/tests -type f -print)
|
|
|
|
SUBDIRS = $(ARGP_STANDALONE_DIR) rpc/xdr/gen libglusterfs rpc api xlators \
|
|
glusterfsd $(FUSERMOUNT_SUBDIR) doc extras cli heal \
|
|
@SYNCDAEMON_SUBDIR@ @UMOUNTD_SUBDIR@ tools events
|
|
|
|
pkgconfigdir = @pkgconfigdir@
|
|
pkgconfig_DATA = glusterfs-api.pc libgfchangelog.pc
|
|
if USE_GFDB
|
|
pkgconfig_DATA += libgfdb.pc
|
|
endif
|
|
|
|
CLEANFILES = glusterfs-api.pc libgfchangelog.pc libgfdb.pc \
|
|
contrib/umountd/Makefile
|
|
|
|
gitclean: distclean
|
|
find . -name Makefile.in -exec rm -f {} \;
|
|
find . -name mount.glusterfs -exec rm -f {} \;
|
|
rm -fr autom4te.cache
|
|
rm -f missing aclocal.m4 config.h.in config.guess config.sub ltmain.sh install-sh configure depcomp
|
|
|
|
# dist-hook gets executed with 'make dist', this is the only target getting
|
|
# executed, a dist-hook in other Makefile.am files seem to get ignored.
|
|
dist-hook: gen-VERSION gen-ChangeLog
|
|
-rm -fr $(distdir)/contrib/umountd/.deps
|
|
-rm -f $(distdir)/events/src/eventtypes.py
|
|
-rm -f $(distdir)/tests/env.rc
|
|
-cp -f $(top_srcdir)/build-aux/config.sub.dist $(distdir)/config.sub
|
|
-cp -f $(top_srcdir)/build-aux/config.guess.dist $(distdir)/config.guess
|
|
|
|
.PHONY: gen-VERSION gen-ChangeLog clang-check
|
|
|
|
clang-check:
|
|
@$(top_srcdir)/extras/clang-checker.sh
|
|
|
|
gen-ChangeLog:
|
|
(cd $(srcdir) && git diff && echo ===== git log ==== && git log) > $(distdir)/ChangeLog
|
|
|
|
.PHONY : gen-VERSION
|
|
gen-VERSION:
|
|
if test -d $(top_srcdir)/.git; then \
|
|
cd $(top_srcdir); \
|
|
./build-aux/pkg-version --full \
|
|
> $(abs_top_builddir)/$(distdir)/VERSION; \
|
|
fi
|
|
|