gnustep-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Moved core/Testing directory to new examples package


From: Adam Fedor
Subject: Moved core/Testing directory to new examples package
Date: Sat, 21 Oct 2000 21:49:22 -0600

I moved the Testing directory that was in the core package to a new
examples package. This makes it clearer that you have to make and
install the core package before trying to compile the examples.
Hopefully we'll also be able to get volunteers to write new, clearer
examples/tests that show off the usefulness of GNUstep.

IMPORTANT NOTE FOR CVS USERS:

If you use cvs to get the core source code, you will need to run the
attached script (from the core directory) to update the local CVS
information with the new location of the Testing directory. You'll have
to move the Testing directory yourself to a new location ( or you can
just keep it where it is and it will update as usual). If you do decide
to move it, make sure to remove the entry 'D/Testing////' from the file
core/CVS/Entries.

In the unlikely case that this doesn't work, you can always delete the
core package and check it out again.



-- 
Adam Fedor, Digital Optics            | Fudd's law of opposition: Push
address@hidden  http://www.doc.com     | something hard enough, and it 
address@hidden  http://www.gnustep.org | will fall over.
#!/bin/sh
# Fake moving of the core/Testing directory to examples/gui
#
FILES=`find . -name Repository`
for file in $FILES; do
  if [ `grep core/Testing $file` ]; then
    echo Updating $file ;
    rm -f tmp-edit-file
    sed -e's,core/Testing,examples/gui,' $file > tmp-edit-file ;
    mv tmp-edit-file $file ;
  fi
done

reply via email to

[Prev in Thread] Current Thread [Next in Thread]