• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision343842e1d73bcbaf127f56fa5967acf5f6b16efc (tree)
Time2012-03-06 22:13:45
Authormatsuand <matsuand@user...>
Commitermatsuand

Log Message

[BLFS] Modified _extract.sh.

Change Summary

Incremental Difference

--- a/BLFS/_extract.sh
+++ b/BLFS/_extract.sh
@@ -1,7 +1,13 @@
1+FILE=$DLD/$TARGETBALL
2+
3+if test "$1" != ""; then
4+ FILE=$1
5+fi
6+
17 echo \ \ Extracting sources...
2-if ! test -f $DLD/$TARGETBALL; then
3- echo \ \ Tarball not found: $TARGETBALL && exit 1
8+if test ! -f $FILE; then
9+ echo \ \ Tarball not found: $FILE && exit 1
410 else
5- tar xf $DLD/$TARGETBALL
11+ tar xf $FILE
612 fi
713