fixed for aix 4 now
This commit is contained in:
parent
871cfe32b5
commit
c4c6a28385
|
@ -54,3 +54,6 @@ reported by Bill Sommerfeld 31 Oct 95. Fixed by bdc 27 Sept 96.
|
||||||
|
|
||||||
problem with path marshalling with the unix domain protocol
|
problem with path marshalling with the unix domain protocol
|
||||||
Reported by Sean Doran 29 Jul 96. Fixed by bdc 1 Oct 96.
|
Reported by Sean Doran 29 Jul 96. Fixed by bdc 1 Oct 96.
|
||||||
|
|
||||||
|
exportlist.aix generated correctly on aix 4 now
|
||||||
|
Reported by Michael Becker 2 June 96. Fix by Michael Sperber 2 Oct 96.
|
||||||
|
|
|
@ -3,9 +3,6 @@ AIX_P = exportlist.aix
|
||||||
exportlist.aix: $(OBJS)
|
exportlist.aix: $(OBJS)
|
||||||
$(RM) exportlist.aix
|
$(RM) exportlist.aix
|
||||||
for f in $(OBJS); do \
|
for f in $(OBJS); do \
|
||||||
/usr/ccs/bin/nm -e $$f | grep '^\..*|extern|' | \
|
/usr/ccs/bin/nm -B -e $$f | grep ' T [^ ][^ ]*$$' | \
|
||||||
sed -e 's/^\.//;s/|//\'| awk '{print $$1}' >> exportlist.aix; \
|
sed -e 's/^.* T \.*\([^ ][^ ]*\)$$/\1/' >> exportlist.aix; \
|
||||||
done;
|
done;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue