forked from Lainports/freebsd-ports
- Fix packaging if python is not present at compile time [2]
- Sort targets in Makefile
- Fix variable in the WITH_X11 case
- Bump PORTREVISION (for [1])
Submitted by: Andreas Haakh <bugReporter@Haakh.de> [1]
Reviewed by: Matthias Andree <matthias.andree@gmx.de>
(upstream maintainer) [1]
Reported by: pointyhat via kris [2]
36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
--- Makefile.in.orig Thu Dec 1 00:33:52 2005
|
|
+++ Makefile.in Sun Dec 11 21:58:15 2005
|
|
@@ -29,7 +29,7 @@
|
|
INSTALL = @INSTALL@
|
|
install_sh_DATA = $(install_sh) -c -m 644
|
|
install_sh_PROGRAM = $(install_sh) -c
|
|
-install_sh_SCRIPT = $(install_sh) -c
|
|
+install_sh_SCRIPT = $(install_sh) -c -m 555
|
|
INSTALL_HEADER = $(INSTALL_DATA)
|
|
transform = $(program_transform_name)
|
|
NORMAL_INSTALL = :
|
|
@@ -864,24 +864,6 @@
|
|
rm -f y.tab.c
|
|
uninstall-info-am:
|
|
install-pythonPYTHON: $(python_PYTHON)
|
|
- @$(NORMAL_INSTALL)
|
|
- test -z "$(pythondir)" || $(mkdir_p) "$(DESTDIR)$(pythondir)"
|
|
- @list='$(python_PYTHON)'; dlist=''; for p in $$list; do\
|
|
- if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
|
|
- if test -f $$b$$p; then \
|
|
- f=$(am__strip_dir) \
|
|
- dlist="$$dlist $$f"; \
|
|
- echo " $(pythonPYTHON_INSTALL) '$$b$$p' '$(DESTDIR)$(pythondir)/$$f'"; \
|
|
- $(pythonPYTHON_INSTALL) "$$b$$p" "$(DESTDIR)$(pythondir)/$$f"; \
|
|
- else :; fi; \
|
|
- done; \
|
|
- if test -n "$$dlist"; then \
|
|
- if test -z "$(DESTDIR)"; then \
|
|
- PYTHON=$(PYTHON) $(py_compile) --basedir "$(pythondir)" $$dlist; \
|
|
- else \
|
|
- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(pythondir)" $$dlist; \
|
|
- fi; \
|
|
- else :; fi
|
|
|
|
uninstall-pythonPYTHON:
|
|
@$(NORMAL_UNINSTALL)
|