mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
d96901c320
This port generates a makefile and then passes it to "make" via stdin, which makes it different to troubleshoot. When I finally saw the file in order to figure out why several internal static libraries weren't getting built leading to some programs not getting built, I saw a generic static library target made up of variables. fmake likes it; bmake does not. I tried USES+= fmake along with some patching but I must have missed some hardcoded "make" commands because bmake got called again. This software is 20 years old so I finally gave it. It got a stay of execution by getting staged. If somebody wants to study a target that bmake just doesn't get, this is a good place to start.
17 lines
574 B
Plaintext
17 lines
574 B
Plaintext
--- cider1b1/common/lib/makedefs.orig 1994-02-24 09:11:21 UTC
|
|
+++ cider1b1/common/lib/makedefs
|
|
@@ -1,9 +1,12 @@
|
|
|
|
INSTALL_TARGETS = $(CIDER_LIB_DIR)/helpdir/cider.txt \
|
|
$(CIDER_LIB_DIR)/helpdir/cider.idx \
|
|
+ $(CIDER_LIB_DIR)/helpdir/spice.txt \
|
|
+ $(CIDER_LIB_DIR)/helpdir/spice.idx \
|
|
$(CIDER_LIB_DIR)/scripts/devaxis \
|
|
$(CIDER_LIB_DIR)/scripts/devload
|
|
|
|
-ALL_INSTALL_DIRS = $(CIDER_LIB_DIR) $(CIDER_LIB_DIR)/helpdir
|
|
+ALL_INSTALL_DIRS = $(CIDER_LIB_DIR) $(CIDER_LIB_DIR)/helpdir \
|
|
+ $(CIDER_LIB_DIR)/scripts
|
|
|
|
INSTALL_SPECIAL = directories
|