mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-22 19:16:32 +01:00
Respect DESTDIR for lib-dynload directory in py 2.0.1
This commit is contained in:
parent
76217c6b0d
commit
1665723b70
1 changed files with 15 additions and 0 deletions
|
|
@ -204,3 +204,18 @@ Python 2.0 does not support DESTDIR, so add it in.
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@@ -249,10 +249,10 @@
|
||||||
|
$(DESTSHARED):
|
||||||
|
@for i in $(DESTDIRS); \
|
||||||
|
do \
|
||||||
|
- if test ! -d $$i; then \
|
||||||
|
- echo "Creating directory $$i"; \
|
||||||
|
- mkdir $$i; \
|
||||||
|
- chmod 755 $$i; \
|
||||||
|
+ if test ! -d $(DESTDIR)$$i; then \
|
||||||
|
+ echo "Creating directory $(DESTDIR)$$i"; \
|
||||||
|
+ mkdir $(DESTDIR)$$i; \
|
||||||
|
+ chmod 755 $(DESTDIR)$$i; \
|
||||||
|
else true; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue