diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-04-06T22·09+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-04-06T22·09+0000 |
commit | 1447cf35bd633c365bb7584dedb41327951d0c07 (patch) | |
tree | 6f3827fd74d8045cfecca737852c318f4050105f /test | |
parent | 136c00e881dd290d470923b0ce7760de2df5e0ad (diff) |
* Delete source after building.
Diffstat (limited to 'test')
-rwxr-xr-x | test/build/atk-build.sh | 2 | ||||
-rwxr-xr-x | test/build/glib-build.sh | 2 | ||||
-rwxr-xr-x | test/build/gnet-build.sh | 2 | ||||
-rwxr-xr-x | test/build/gtk+-build.sh | 2 | ||||
-rwxr-xr-x | test/build/gtkspell-build.sh | 2 | ||||
-rwxr-xr-x | test/build/pango-build.sh | 2 | ||||
-rwxr-xr-x | test/build/pkgconfig-build.sh | 2 | ||||
-rwxr-xr-x | test/build/pspell-build.sh | 2 |
8 files changed, 16 insertions, 0 deletions
diff --git a/test/build/atk-build.sh b/test/build/atk-build.sh index df881cbef733..58d190aefa23 100755 --- a/test/build/atk-build.sh +++ b/test/build/atk-build.sh @@ -10,3 +10,5 @@ cd atk-* ./configure --prefix=$top make make install +cd .. +rm -rf atk-* diff --git a/test/build/glib-build.sh b/test/build/glib-build.sh index 2100052bede4..92736f7015eb 100755 --- a/test/build/glib-build.sh +++ b/test/build/glib-build.sh @@ -8,3 +8,5 @@ cd glib-* ./configure --prefix=$top make make install +cd .. +rm -rf glib-* diff --git a/test/build/gnet-build.sh b/test/build/gnet-build.sh index ec614b4bfa1c..9752994a11ec 100755 --- a/test/build/gnet-build.sh +++ b/test/build/gnet-build.sh @@ -10,3 +10,5 @@ cd gnet-* ./configure --prefix=$top make make install +cd .. +rm -rf gnet-* diff --git a/test/build/gtk+-build.sh b/test/build/gtk+-build.sh index d2b3d694a92c..8451a2d4e1ba 100755 --- a/test/build/gtk+-build.sh +++ b/test/build/gtk+-build.sh @@ -10,3 +10,5 @@ cd gtk+-* ./configure --prefix=$top make make install +cd .. +rm -rf gtk+-* diff --git a/test/build/gtkspell-build.sh b/test/build/gtkspell-build.sh index d1e56943fabd..009e1133ccb2 100755 --- a/test/build/gtkspell-build.sh +++ b/test/build/gtkspell-build.sh @@ -11,3 +11,5 @@ cd gtkspell-* ./configure --prefix=$top make make install +cd .. +rm -rf gtkspell-* diff --git a/test/build/pango-build.sh b/test/build/pango-build.sh index fd43c274b51d..4ed76f76ab5b 100755 --- a/test/build/pango-build.sh +++ b/test/build/pango-build.sh @@ -10,3 +10,5 @@ cd pango-* ./configure --prefix=$top make make install +cd .. +rm -rf pango-* diff --git a/test/build/pkgconfig-build.sh b/test/build/pkgconfig-build.sh index 522a05716b5c..ff418056fdbe 100755 --- a/test/build/pkgconfig-build.sh +++ b/test/build/pkgconfig-build.sh @@ -8,3 +8,5 @@ cd pkgconfig-* ./configure --prefix=$top make make install +cd .. +rm -rf pkgconfig-* diff --git a/test/build/pspell-build.sh b/test/build/pspell-build.sh index 588c2f1a09a8..57fb1dcbd1ee 100755 --- a/test/build/pspell-build.sh +++ b/test/build/pspell-build.sh @@ -8,3 +8,5 @@ cd pspell-* ./configure --prefix=$top make make install +cd .. +rm -rf pspell-* |