diff options
author | Jon Parise <jon@php.net> | 2002-10-23 21:31:12 +0000 |
---|---|---|
committer | Jon Parise <jon@php.net> | 2002-10-23 21:31:12 +0000 |
commit | 705766fd9b8ac06b71c4c9d668bf93ea89cb2db5 (patch) | |
tree | 9e1656d6e376fcbf84440499d9ff10c86e7694d4 /README.EXT_SKEL | |
parent | c95256b9963e2da411fd422e6802e6a4f1855cb9 (diff) | |
download | php-git-705766fd9b8ac06b71c4c9d668bf93ea89cb2db5.tar.gz |
- Spell out "cd" as "change directory".
- Replace "ie" with "e.g.", which is more appropriate in this context.
Diffstat (limited to 'README.EXT_SKEL')
-rw-r--r-- | README.EXT_SKEL | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/README.EXT_SKEL b/README.EXT_SKEL index 95cf422ed0..772bb4b5ba 100644 --- a/README.EXT_SKEL +++ b/README.EXT_SKEL @@ -7,9 +7,9 @@ WHAT IT IS HOW TO USE IT - Very simple. First, cd do directory ext/ in PHP 4 sources. If you just need - the basic framework and will be writing all the code in your functions - yourself, you can now do + Very simple. First, change to the ext/ directory of the PHP 4 sources. If + you just need the basic framework and will be writing all the code in your + functions yourself, you can now do ./ext_skel --extname=module_name @@ -22,7 +22,7 @@ HOW TO USE IT If you don't need to test the existence of any external header files, libraries or functions in them, the module is already almost ready to be compiled in PHP. Just remove 3 comments in your_module_name/config.m4, - cd back up to PHP sources top directory, and do + change back up to PHP sources top directory, and do ./buildconf; ./configure --enable-module_name; make @@ -38,7 +38,7 @@ HOW TO USE IT FORMAT OF FUNCTION DEFINITIONS FILE All the definitions must be on one line. In it's simplest form, it's just - the function name, ie. + the function name, e.g. my_function |