T.R | Title | User | Personal Name | Date | Lines |
---|
1623.1 | Re: Need help getting .h files propogated to test inclusion in
programs | AOSG::FILTER | Automatic Posting Software - mail to flume::puck | Thu Jul 20 1995 13:47 | 37 |
| Date Of Receipt: 20-JUL-1995 11:58:28.72
From: SMURF::ALPHA::"[email protected]" "20-Jul-1995 1156"
To: Ben Dibble <[email protected]>
CC: [email protected]
Subj: Re: Need help getting .h files propogated to test inclusion in
programs
Sure, Two different directories actually.
./usr/include/sys # for mount.h
./usr/include/msfs/msfs # for bs_ods.h
Just in case you need to do this again ....
cd ptos/src/usr/include
find . -name Makefile |xargs grep "mount.h"
find . -name Makefile |xargs grep "bs_ods.h"
-Grant
| Hi,
| I lost the magic, sorry. I've made a change to mount.h and bs_ods.h
| and it went well. Now I need to get this change available so when I build
| the program src/sbin/mount_advfs/mount_advfs it will find these changes.
|
| My notes say something about doing a build in the correct directory.
| BUT, I can't seem to find the correct one.
|
| Can you help?
| thanks!
| Ben
|
1623.2 | Re: Need help getting .h files propogated to test inclusion in programs | AOSG::FILTER | Automatic Posting Software - mail to flume::puck | Thu Jul 20 1995 15:51 | 22 |
| Date Of Receipt: 20-JUL-1995 13:59:35.29
From: SMURF::GURU::dibble "Ben Dibble"
To: [email protected]
CC: [email protected]
Subj: Re: Need help getting .h files propogated to test inclusion in programs
I try to make myself clear and always fail... sigh
Grant,
thanks for getting back to me. Unfortunately, it wasn't that I
didn't know where they are, it's that, building advfs_mount won't find
the changed mount.h file until it's moved somewhere, and I can't recall
where I do the build, nor the command.
Right now I get undefined when building the program advfs_mount due
to ode picking up the pool mount.h rather than the one I've changed.
Question? Do I have to do a bci before all this?
thanks!
Ben
|
1623.3 | Re: Need help getting .h files propogated to test inclusion in
programs | AOSG::FILTER | Automatic Posting Software - mail to flume::puck | Fri Jul 21 1995 17:59 | 33 |
| Date Of Receipt: 21-JUL-1995 16:51:40.09
From: SMURF::FLUME::jmf "Joshua M. Friedman OSF/UNIX SDE 21-Jul-1995 1650"
To: Ben Dibble <dibble@DEC:.zko.flume>
CC: [email protected], [email protected], jmf@DEC:.zko.flume
Subj: Re: Need help getting .h files propogated to test inclusion in
programs
Ben, I think I found your answer:
cd ./usr/include/sys
build export_mount.h
/* this Makefile uses VPATH to reach over to kernel/sys/mount.h */
-josh
--------
> I try to make myself clear and always fail... sigh
>
> Grant,
> thanks for getting back to me. Unfortunately, it wasn't that I
> didn't know where they are, it's that, building advfs_mount won't find
> the changed mount.h file until it's moved somewhere, and I can't recall
> where I do the build, nor the command.
>
> Right now I get undefined when building the program advfs_mount due
> to ode picking up the pool mount.h rather than the one I've changed.
>
> Question? Do I have to do a bci before all this?
>
> thanks!
> Ben
|