* 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 # By default, add write permission to the sources. This is often
# necessary when sources have been copied from other store # necessary when sources have been copied from other store
# locations. # locations.
if test "dontMakeSourcesWritable" != 1; then if test "$dontMakeSourcesWritable" != 1; then
chmod -R u+w "$sourceRoot" chmod -R u+w "$sourceRoot"
fi fi