Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa35465 commit fc8ebb1Copy full SHA for fc8ebb1
1 file changed
Makefile.in
@@ -258,12 +258,11 @@ libinstall: python $(srcdir)/Lib/$(MACHDEP)
258
./python $(LIBDEST)/compileall.py $(LIBDEST)
259
260
# Create the MACHDEP source directory, if one wasn't distributed..
261
-# XXX This requires Tools/scripts/h2py.py which requires /usr/local/bin/python.
262
-# Oh well, it's a hint that something should be done.
263
-$(srcdir)/Lib/$(MACHDEP):
+$(srcdir)/Lib/$(MACHDEP): python
264
mkdir $(srcdir)/Lib/$(MACHDEP)
265
cp $(srcdir)/Lib/generic/regen $(srcdir)/Lib/$(MACHDEP)/regen
266
- (cd $(srcdir)/Lib/$(MACHDEP); ./regen)
+ export PATH; PATH="`pwd`:$PATH"; \
+ cd $(srcdir)/Lib/$(MACHDEP); ./regen
267
268
# Install the include files
269
inclinstall:
0 commit comments