Check-in Number:
|
223 | |
Date: |
2000-Dec-13 16:35:11 (local)
2000-Dec-13 15:35:11 (UTC) |
User: | simons |
Branch: | |
Comment: |
FreeBSD's make sucks big time: It doesn't honor the -C flag. Hence we
have to change into the target directory before calling make. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/petidomo/Makefile.in 1.6 -> 1.7
--- Makefile.in 2000/12/14 15:30:52 1.6
+++ Makefile.in 2000/12/14 15:35:11 1.7
@@ -46,10 +46,10 @@
acl.c: acl_scan.c
$(LIBS):
- $(MAKE) -C `echo $@ | sed -e 's@/.*@@'`
+ (cd `echo $@ | sed -e 's@/.*@@'` && $(MAKE))
clean distclean realclean::
- @for n in lib*; do $(MAKE) -C $$n $@; done
+ @for n in lib*; do (cd $$n && $(MAKE) $@); done
clean::
rm -f petidomo listserv hermes
|
|