forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autogen.sh: fix removal of autom4te.cache
https://bugs.webkit.org/show_bug.cgi?id=121150 Reviewed by Carlos Garcia Campos. The removal of autom4te.cache is wrong, it uses 'rm -f' instead of 'rm -rf' and it relies on an undefined variable. In addition to that, it should be done after running autoreconf, which is when it's no longer needed. * autogen.sh: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@155517 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
dc76999
commit 8be54f7
Showing
2 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
2013-09-11 Alberto Garcia <[email protected]> | ||
|
||
autogen.sh: fix removal of autom4te.cache | ||
https://bugs.webkit.org/show_bug.cgi?id=121150 | ||
|
||
Reviewed by Carlos Garcia Campos. | ||
|
||
The removal of autom4te.cache is wrong, it uses 'rm -f' instead of | ||
'rm -rf' and it relies on an undefined variable. | ||
|
||
In addition to that, it should be done after running autoreconf, | ||
which is when it's no longer needed. | ||
|
||
* autogen.sh: | ||
|
||
2013-09-11 Alberto Garcia <[email protected]> | ||
|
||
Unquoted $ORIGDIR in autogen.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters