3
0
Fork 0
forked from mirrors/nixpkgs

* dontMakeSourcesWritable: should be a variable. Caught by Marc

Weber.

svn path=/nixpkgs/trunk/; revision=15961
This commit is contained in:
Eelco Dolstra 2009-06-15 13:39:09 +00:00
parent 861c12a13c
commit 16fef1d9d6

View file

@ -482,7 +482,7 @@ unpackPhase() {
# By default, add write permission to the sources. This is often
# necessary when sources have been copied from other store
# locations.
if test "dontMakeSourcesWritable" != 1; then
if test "$dontMakeSourcesWritable" != 1; then
chmod -R u+w "$sourceRoot"
fi