Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7cb32ae

Browse files
committed
Strip trailing whitespace, including two lines containing only one or
more tabs that XEmacs Makefile mode found suspicious.
1 parent 723aa97 commit 7cb32ae

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

Makefile.pre.in

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# Top-level Makefile for Python
2-
#
2+
#
33
# As distributed, this file is called Makefile.pre.in; it is processed
44
# into the real Makefile by running the script ./configure, which
55
# replaces things like @spam@ with values appropriate for your system.
66
# This means that if you edit Makefile, your changes get lost the next
77
# time you run the configure script. Ideally, you can do:
8-
#
8+
#
99
# ./configure
1010
# make
1111
# make test
1212
# make install
13-
#
13+
#
1414
# If you have a previous version of Python installed that you don't
1515
# want to overwrite, you can use "make altinstall" instead of "make
1616
# install". Refer to the "Installing" section in the README file for
1717
# additional details.
18-
#
18+
#
1919
# See also the section "Build instructions" in the README file.
2020

2121
# === Variables set by makesetup ===
@@ -282,7 +282,7 @@ LIBRARY_OBJS= \
282282
# Rules
283283

284284
# Default target
285-
all: $(PYTHON) oldsharedmods sharedmods
285+
all: $(PYTHON) oldsharedmods sharedmods
286286

287287
# Build the interpreter
288288
$(PYTHON): Modules/$(MAINOBJ) $(LDLIBRARY)
@@ -339,7 +339,7 @@ libpython$(VERSION).so: $(LIBRARY)
339339
# This rule is here for OPENSTEP/Rhapsody/MacOSX
340340
$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): $(LIBRARY) $(PYTHONFRAMEWORKDIR)
341341
libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
342-
-framework System @LIBTOOL_CRUFT@
342+
-framework System @LIBTOOL_CRUFT@
343343

344344
# This rule builds the Cygwin Python DLL
345345
libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
@@ -500,7 +500,7 @@ install: altinstall bininstall maninstall
500500

501501
# Install almost everything without disturbing previous versions
502502
altinstall: altbininstall libinstall inclinstall libainstall \
503-
sharedinstall oldsharedinstall
503+
sharedinstall oldsharedinstall
504504

505505
# Install shared libraries enabled by Setup
506506
DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
@@ -513,7 +513,7 @@ oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
513513
fi; \
514514
done
515515

516-
$(DESTSHARED):
516+
$(DESTSHARED):
517517
@for i in $(DESTDIRS); \
518518
do \
519519
if test ! -d $$i; then \
@@ -749,7 +749,7 @@ $(PYTHONFRAMEWORKDIR): $(RESSRCDIR)/Info.plist \
749749
$(LN) -fs Versions/Current/Python $(PYTHONFRAMEWORKDIR)/Python
750750
$(LN) -fs Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
751751
$(LN) -fs Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
752-
752+
753753
# On install, we re-make the framework
754754
# structure in the install location, /Library/Frameworks/ or the argument to
755755
# --enable-framework. If --enable-framework has been specified then we have
@@ -781,7 +781,7 @@ frameworkinfrastructureinstall: $(LDLIBRARY)
781781
$(LN) -fs Versions/Current/Headers $(PYTHONFRAMEWORKINSTALLDIR)/Headers
782782
$(LN) -fs Versions/Current/Resources $(PYTHONFRAMEWORKINSTALLDIR)/Resources
783783
$(INSTALL_DATA) $(LDLIBRARY) $(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
784-
784+
785785
# Build the toplevel Makefile
786786
Makefile.pre: Makefile.pre.in config.status
787787
CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
@@ -833,7 +833,7 @@ clean:
833833
clobber: clean
834834
-rm -f $(PYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
835835
tags TAGS \
836-
config.cache config.log pyconfig.h Modules/config.c
836+
config.cache config.log pyconfig.h Modules/config.c
837837
-rm -rf build platform
838838

839839
# Make things extra clean, before making a distribution:

0 commit comments

Comments
 (0)