Subject: pax & include/Makefile
To: None <current-users@sun-lamp.cs.berkeley.edu>
From: Hubert Feyrer <Hubert.Feyrer@rz.uni-regensburg.de>
List: current-users
Date: 07/05/1994 09:03:32
I just tried updating my system, but without a working pax, I hardly
got /usr/include installed, so I just rewrote that pax-command into a
pipe using some tar-commands:

in src/include/Makefile, replaced

 cd ../sys; \
 pax -rw -pa -L `find ${LDIRS} '(' -type d -path '*/*' -prune ')' -o \
     '(' -type f -name '*.h' -print ')'; \
     find ${LSUBDIRS} -type f -name '*.h' -print` ${DESTDIR}/usr/include

with

 cd ../sys; \
 ( find ${LDIRS} '(' -type d -path '*/*' -prune ')' -o \
        '(' -type f -name '*.h' -print ')'; \
   find ${LSUBDIRS} -type f -name '*.h' -print ) \ 
 | tar plcTf - - \
 | ( cd ${DESTDIR}/usr/include ; tar plxf - )


Works fine for me, and probably all those who don't have pax. ;)


Regards,

      Hubert

=============== Hubert Feyrer ============================================
      Weekdays: Rennerstr. 19, D-93053 Regensburg,  Tel. 0941/701788
      Weekends: Bachstr. 40,   D-84066 Mallersdorf, Tel. 08772/6084
      Internet: hubert.feyrer@rz.uni-regensburg.de == IRC: hubertf
==========================================================================
  Click here.

------------------------------------------------------------------------------