diff options
author | Guido van Rossum <guido@python.org> | 1996-08-21 20:18:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-21 20:18:29 (GMT) |
commit | cda848f49eb92401e8c4d01154531f6e7397a480 (patch) | |
tree | e25893530011e47fa221ba78f85568f9aa703620 /Makefile.in | |
parent | a4ddb238bcdd1b64af0d73d7444f18cbb510e7ed (diff) | |
download | cpython-cda848f49eb92401e8c4d01154531f6e7397a480.zip cpython-cda848f49eb92401e8c4d01154531f6e7397a480.tar.gz cpython-cda848f49eb92401e8c4d01154531f6e7397a480.tar.bz2 |
Remove dependency of $(srcdir)/Lib/$(MACHDEP) on python, since it would
try to do the mkdir whenever a new python has been built...
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 879e67d..57dad87 100644 --- a/Makefile.in +++ b/Makefile.in @@ -258,7 +258,7 @@ libinstall: python $(srcdir)/Lib/$(MACHDEP) ./python $(LIBDEST)/compileall.py $(LIBDEST) # Create the MACHDEP source directory, if one wasn't distributed.. -$(srcdir)/Lib/$(MACHDEP): python +$(srcdir)/Lib/$(MACHDEP): mkdir $(srcdir)/Lib/$(MACHDEP) cp $(srcdir)/Lib/generic/regen $(srcdir)/Lib/$(MACHDEP)/regen export PATH; PATH="`pwd`:$PATH"; \ |