1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-18 08:19:35 +01:00

Fix regular expression

http://hydra.nixos.org/build/3123177
This commit is contained in:
Eelco Dolstra 2012-10-04 09:46:10 -04:00
parent d1de836938
commit 90b8a34f82

View file

@ -29,4 +29,4 @@ AM_CXXFLAGS = -Wall \
local-store.lo: schema.sql.hh local-store.lo: schema.sql.hh
%.sql.hh: %.sql %.sql.hh: %.sql
sed -e 's/"/\\"/g' -e 's/.*/"\0\\n"/' < $< > $@ || (rm $@ && exit 1) sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $< > $@ || (rm $@ && exit 1)