

If I execute configure the script generates this in the Makefile:
Code: Select all
INSTALL_DIR = /
INSTALL_BINARY_DIR = "$(INSTALL_DIR)/"/usr/local/games
INSTALL_ICON_DIR = "$(INSTALL_DIR)/"/usr/local/share/pixmaps
INSTALL_DATA_DIR = "$(INSTALL_DIR)/"/usr/local/share/games/openttd
Code: Select all
INSTALL_BINARY_DIR = "//"/usr/local/games
INSTALL_ICON_DIR = "//"/usr/local/share/pixmaps
INSTALL_DATA_DIR = "//"/usr/local/share/games/openttd
Or is there any reason why not?
Code: Select all
INSTALL_PREFIX = /
INSTALL_BINARY_DIR = "$(INSTALL_PREFIX)usr/local/games"
INSTALL_ICON_DIR = "$(INSTALL_PREFIX)usr/local/share/pixmaps"
INSTALL_DATA_DIR = "$(INSTALL_PREFIX)usr/local/share/games/openttd"
I'd like the way the Makefile of the linux-kernel use: pkg-bz2 for example?
Just more linux like.

And why copy the files to the bundle-dir instead of linking it (just to save space)?