]> git.pld-linux.org Git - projects/rc-scripts.git/blobdiff - DEVELOPMENT
Make DELAY_LOGIN checks consistent with the one in rc.sysinit (broken in 277e5f5352e6...
[projects/rc-scripts.git] / DEVELOPMENT
index 2a1fb20c51f3ebfb95451d0ee0abe05bad925f88..b347b76fce66f23afda1bea9ad7346c76070f21a 100644 (file)
@@ -1,17 +1,16 @@
           READ THIS BEFORE CHANGEING SOMETHING IN RC-SCRIPTS PACKAGE
                    Arkadiusz Miskiewicz <misiek@pld-linux.org>
-           $Id$
 
 1)
        consult all major changes with people on pld-rc-scripts@pld-linux.org
 mailing list. This is very important.
 
 2)
-       use 'typeset' for local variables in functions for example:
+       use 'local' for local variables in functions for example:
 
 function_ble ()
 {
-typeset qw er
+local qw er=0
 qw=$(tty)
 er=/dev/console
 echo "$qw $er"
@@ -33,14 +32,11 @@ interfaces_boot=$(
        esac
 )
 
-4)
-       consider using typeset -i variable for integer variables
-
-5)     don't use sed ! It only causes one more Requires.
+4)     don't use sed ! It only causes one more Requires.
        Use awk ' { gsub(/pattern/,"replaced"); print $0; } ' for that.
        Also try to replace grep calls with awk calls.
        
-6)
+5)
        (PL) Tlumaczac komunikaty na PL nalezy uzywac formy bezosobowej np:
 
 uruchamianie uslugi
@@ -51,10 +47,11 @@ uruchamiam usluge
 
 HOW TO MAKE A RELEASE
 
-- svn up
+- git checkout master
+- git pull --rebase
+- ./autogen.sh
 - make distcheck
 - update configure.ac release and commit it
-- svn up && ./changelog.sh && svn ci ChangeLog
 - make dist
 - ./make-tag.sh
 - upload tarball to distfiles, update rc-scripts.spec:HEAD
This page took 0.033489 seconds and 4 git commands to generate.