| Issue 1: | Cannot compile and install tecnoballz 0.93 | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem?
1. Unpack tecnoballz-0.93.tgz and then issue:
$ autoreconf -fvi
$ ./configure
$ make
$ make install
What is the expected output? What do you see instead?
make will fail because there is no rule to make supervisor.c
make install will fail because it cannot find tecnoballz.hi since it's in the parent directory
The following patch solves these problems.
diff -durN tecnoballz-0.93.orig/src/Makefile.am tecnoballz-0.93/src/Makefile.am
--- tecnoballz-0.93.orig/src/Makefile.am 2012-09-02 21:38:34.000000000 +0
200
+++ tecnoballz-0.93/src/Makefile.am 2014-09-29 15:54:58.735028091 +0200
@@ -18,7 +18,7 @@
-chown root:games "$(DESTDIR)/$(gamesdir)/tecnoballz"
-chmod 2755 "$(DESTDIR)/$(gamesdir)/tecnoballz"
$(INSTALL) -d $(DESTDIR)/$(scoredir)
- $(INSTALL) $(score) $(DESTDIR)/$(scoredir)
+ $(INSTALL) ../$(score) $(DESTDIR)/$(scoredir)
-chown root:games "$(DESTDIR)/$(scoredir)/$(score)"
-chmod 664 "$(DESTDIR)/$(scoredir)/$(score)"
@@ -82,7 +82,7 @@
sprite_projectile.cc \
sprite_ship.cc \
sprite_wall.cc \
- supervisor.c \
+ supervisor.cc \
supervisor_bricks_level.cc \
supervisor_main_menu.cc \
supervisor_map_editor.cc \
What version of the product are you using? On what operating system?
tecnoballz 0.93 on Fedora 20/x86_64
Please provide any additional information below.
Sep 30, 2014
Project Member
#1
bruno.et...@gmail.com
Status:
Fixed
|