fixed for aix 4 now

This commit is contained in:
bdc 1996-10-02 15:30:34 +00:00
parent 871cfe32b5
commit c4c6a28385
2 changed files with 5 additions and 5 deletions

View File

@ -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
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.

View File

@ -3,9 +3,6 @@ AIX_P = exportlist.aix
exportlist.aix: $(OBJS)
$(RM) exportlist.aix
for f in $(OBJS); do \
/usr/ccs/bin/nm -e $$f | grep '^\..*|extern|' | \
sed -e 's/^\.//;s/|//\'| awk '{print $$1}' >> exportlist.aix; \
/usr/ccs/bin/nm -B -e $$f | grep ' T [^ ][^ ]*$$' | \
sed -e 's/^.* T \.*\([^ ][^ ]*\)$$/\1/' >> exportlist.aix; \
done;